Skip to main content

ITalkBuilderMethods

Trait ITalkBuilderMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn finalize(self)

Finalize() overload

Source

fn reset(self)

Reset() overload

Source

fn release(self)

Release() overload

Source

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

Source

fn add_key_wait(self)

AddKeyWait() overload

Source

fn add_key_next_page(self)

AddKeyNextPage() overload

Source

fn add_key_wait_and_next_page(self)

AddKeyWaitAndNextPage() overload

Source

fn add_window_make( self, pid: impl Into<Il2CppString>, location: impl Into<Il2CppString>, )

AddWindowMake(::unity::Il2CppString, ::unity::Il2CppString) overload

Source

fn add_window_delete(self, pid: impl Into<Il2CppString>)

AddWindowDelete(::unity::Il2CppString) overload

Source

fn add_window_active(self, pid: impl Into<Il2CppString>)

AddWindowActive(::unity::Il2CppString) overload

Source

fn add_string(self, str: impl Into<Il2CppString>)

AddString(::unity::Il2CppString) overload

Source

fn terminate(self)

Terminate() overload

Source

fn get_ptr(self) -> IntPtr

GetPtr() 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§

Source§

impl<__T: ITalkBuilder> ITalkBuilderMethods for __T

Available on crate feature app-talk3_d-talkbuilder only.