pub trait IEventDemoSequence_CmdInfoMethods: IEventDemoSequence_CmdInfo {
// Provided methods
fn get_func(self) -> EventDemoSequence_CmdFunc { ... }
fn set_func(self, value: impl Into<EventDemoSequence_CmdFunc>) { ... }
fn get_cmd_name(self) -> Il2CppString { ... }
fn set_cmd_name(self, value: impl Into<Il2CppString>) { ... }
fn get_args(self) -> Array<Il2CppString> { ... }
fn set_args(self, value: impl Into<Array<Il2CppString>>) { ... }
fn get_repeat_counter(self) -> i32 { ... }
fn set_repeat_counter(self, value: impl Into<i32>) { ... }
fn ctor(
self,
func: impl Into<EventDemoSequence_CmdFunc>,
cmd_name: impl Into<Il2CppString>,
args: impl Into<Array<Il2CppString>>,
) { ... }
fn inc_repet_counter(self) { ... }
}Provided Methods§
Sourcefn get_func(self) -> EventDemoSequence_CmdFunc
fn get_func(self) -> EventDemoSequence_CmdFunc
get_Func() overload
Sourcefn set_func(self, value: impl Into<EventDemoSequence_CmdFunc>)
fn set_func(self, value: impl Into<EventDemoSequence_CmdFunc>)
set_Func(crate::app::eventdemosequence::EventDemoSequence_CmdFunc) overload
Sourcefn get_cmd_name(self) -> Il2CppString
fn get_cmd_name(self) -> Il2CppString
get_CmdName() overload
Sourcefn set_cmd_name(self, value: impl Into<Il2CppString>)
fn set_cmd_name(self, value: impl Into<Il2CppString>)
set_CmdName(::unity::Il2CppString) overload
Sourcefn get_args(self) -> Array<Il2CppString>
fn get_args(self) -> Array<Il2CppString>
get_Args() overload
Sourcefn set_args(self, value: impl Into<Array<Il2CppString>>)
fn set_args(self, value: impl Into<Array<Il2CppString>>)
set_Args(::unity::Array<::unity::Il2CppString>) overload
Sourcefn get_repeat_counter(self) -> i32
fn get_repeat_counter(self) -> i32
get_RepeatCounter() overload
Sourcefn set_repeat_counter(self, value: impl Into<i32>)
fn set_repeat_counter(self, value: impl Into<i32>)
set_RepeatCounter(i32) overload
Sourcefn ctor(
self,
func: impl Into<EventDemoSequence_CmdFunc>,
cmd_name: impl Into<Il2CppString>,
args: impl Into<Array<Il2CppString>>,
)
fn ctor( self, func: impl Into<EventDemoSequence_CmdFunc>, cmd_name: impl Into<Il2CppString>, args: impl Into<Array<Il2CppString>>, )
.ctor(crate::app::eventdemosequence::EventDemoSequence_CmdFunc, ::unity::Il2CppString, ::unity::Array<::unity::Il2CppString>) overload
Sourcefn inc_repet_counter(self)
fn inc_repet_counter(self)
IncRepetCounter() 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: IEventDemoSequence_CmdInfo> IEventDemoSequence_CmdInfoMethods for __T
Available on crate feature
app-eventdemosequence only.