pub trait ITalkTagNameMethods: ITalkTagName {
// Provided methods
fn initialize(self, talk_ptr: impl Into<TalkPtr>) { ... }
fn execute(self) { ... }
fn get_result(self) -> TalkTag_Result { ... }
fn get_tag_id(self) -> Mess_TagID_Name { ... }
fn get_replace_name(self) -> Il2CppString { ... }
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 get_result(self) -> TalkTag_Result
fn get_result(self) -> TalkTag_Result
GetResult() overload
Sourcefn get_tag_id(self) -> Mess_TagID_Name
fn get_tag_id(self) -> Mess_TagID_Name
GetTagID() overload
Sourcefn get_replace_name(self) -> Il2CppString
fn get_replace_name(self) -> Il2CppString
GetReplaceName() 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: ITalkTagName> ITalkTagNameMethods for __T
Available on crate feature
app-talk3_d-talktagname only.