pub trait ITalkTagAddLetterMethods: ITalkTagAddLetter {
// Provided methods
fn set_letter(self, chr: impl Into<u16>) { ... }
fn reset_line_feed_enable(self) { ... }
fn execute(self) { ... }
fn execute_for_character_pre_load(self) { ... }
fn get_result(self) -> TalkTag_Result { ... }
fn get_result_for_head_text(self) -> TalkTag_Result { ... }
fn get_add_letter(self) -> u16 { ... }
fn need_fade_wait(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_letter(self, chr: impl Into<u16>)
fn set_letter(self, chr: impl Into<u16>)
SetLetter(u16) overload
Sourcefn reset_line_feed_enable(self)
fn reset_line_feed_enable(self)
ResetLineFeedEnable() overload
Sourcefn execute_for_character_pre_load(self)
fn execute_for_character_pre_load(self)
ExecuteForCharacterPreLoad() 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
Sourcefn get_add_letter(self) -> u16
fn get_add_letter(self) -> u16
GetAddLetter() overload
Sourcefn need_fade_wait(self) -> bool
fn need_fade_wait(self) -> bool
NeedFadeWait() 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: ITalkTagAddLetter> ITalkTagAddLetterMethods for __T
Available on crate feature
app-talk3_d-talktagaddletter only.