pub trait ITalkTagMethods: ITalkTag {
// Provided methods
fn initialize(self, talk_ptr: impl Into<TalkPtr>) { ... }
fn execute(self) { ... }
fn execute_for_character_pre_load(self) { ... }
fn need_fade_wait(self) -> bool { ... }
fn get_result(self) -> TalkTag_Result { ... }
fn get_result_for_head_text(self) -> TalkTag_Result { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn initialize(self, talk_ptr: impl Into<TalkPtr>)
fn initialize(self, talk_ptr: impl Into<TalkPtr>)
Initialize(crate::app::talk3_d::talkptr::TalkPtr) overload
Sourcefn execute_for_character_pre_load(self)
fn execute_for_character_pre_load(self)
ExecuteForCharacterPreLoad() overload
Sourcefn need_fade_wait(self) -> bool
fn need_fade_wait(self) -> bool
NeedFadeWait() overload
Sourcefn get_result(self) -> TalkTag_Result
fn get_result(self) -> TalkTag_Result
GetResult() overload
Sourcefn get_result_for_head_text(self) -> TalkTag_Result
fn get_result_for_head_text(self) -> TalkTag_Result
GetResultForHeadText() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: ITalkTag> ITalkTagMethods for __T
Available on crate feature
app-talk3_d-talktag only.