pub trait ITalkSequence_ReplaceTextMethods: ITalkSequence_ReplaceText {
// Provided methods
fn set_text(self, value: impl Into<Il2CppString>) { ... }
fn get_text(self) -> Il2CppString { ... }
fn next(self) { ... }
fn get_current_character(self) -> u16 { ... }
fn need_replace(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_text(self, value: impl Into<Il2CppString>)
fn set_text(self, value: impl Into<Il2CppString>)
set_Text(::unity::Il2CppString) overload
Sourcefn get_text(self) -> Il2CppString
fn get_text(self) -> Il2CppString
get_Text() overload
Sourcefn get_current_character(self) -> u16
fn get_current_character(self) -> u16
get_CurrentCharacter() overload
Sourcefn need_replace(self) -> bool
fn need_replace(self) -> bool
NeedReplace() 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: ITalkSequence_ReplaceText> ITalkSequence_ReplaceTextMethods for __T
Available on crate feature
app-talk3_d-talksequence only.