pub trait ITalkBuilderMethods: ITalkBuilder {
Show 14 methods
// Provided methods
fn ctor(self) { ... }
fn finalize(self) { ... }
fn reset(self) { ... }
fn release(self) { ... }
fn add_talk_type(
self,
type: impl Into<Talk_TalkType>,
positions_root_name: impl Into<Il2CppString>,
) { ... }
fn add_key_wait(self) { ... }
fn add_key_next_page(self) { ... }
fn add_key_wait_and_next_page(self) { ... }
fn add_window_make(
self,
pid: impl Into<Il2CppString>,
location: impl Into<Il2CppString>,
) { ... }
fn add_window_delete(self, pid: impl Into<Il2CppString>) { ... }
fn add_window_active(self, pid: impl Into<Il2CppString>) { ... }
fn add_string(self, str: impl Into<Il2CppString>) { ... }
fn terminate(self) { ... }
fn get_ptr(self) -> IntPtr { ... }
}Provided Methods§
Sourcefn add_talk_type(
self,
type: impl Into<Talk_TalkType>,
positions_root_name: impl Into<Il2CppString>,
)
fn add_talk_type( self, type: impl Into<Talk_TalkType>, positions_root_name: impl Into<Il2CppString>, )
AddTalkType(crate::app::talk3_d::talk_2::Talk_TalkType, ::unity::Il2CppString) overload
Sourcefn add_key_wait(self)
fn add_key_wait(self)
AddKeyWait() overload
Sourcefn add_key_next_page(self)
fn add_key_next_page(self)
AddKeyNextPage() overload
Sourcefn add_key_wait_and_next_page(self)
fn add_key_wait_and_next_page(self)
AddKeyWaitAndNextPage() overload
Sourcefn add_window_make(
self,
pid: impl Into<Il2CppString>,
location: impl Into<Il2CppString>,
)
fn add_window_make( self, pid: impl Into<Il2CppString>, location: impl Into<Il2CppString>, )
AddWindowMake(::unity::Il2CppString, ::unity::Il2CppString) overload
Sourcefn add_window_delete(self, pid: impl Into<Il2CppString>)
fn add_window_delete(self, pid: impl Into<Il2CppString>)
AddWindowDelete(::unity::Il2CppString) overload
Sourcefn add_window_active(self, pid: impl Into<Il2CppString>)
fn add_window_active(self, pid: impl Into<Il2CppString>)
AddWindowActive(::unity::Il2CppString) overload
Sourcefn add_string(self, str: impl Into<Il2CppString>)
fn add_string(self, str: impl Into<Il2CppString>)
AddString(::unity::Il2CppString) 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: ITalkBuilder> ITalkBuilderMethods for __T
Available on crate feature
app-talk3_d-talkbuilder only.