pub trait IConditionGetterCommandMethods: IConditionGetterCommand {
// Provided methods
fn ctor(self, name: impl Into<Il2CppString>) { ... }
fn get_name(self) -> Il2CppString { ... }
fn get(self, obj1: impl Into<Object>, obj2: impl Into<Object>) -> f32 { ... }
fn func(
self,
args: impl Into<List_1<f32>>,
obj1: impl Into<Object>,
obj2: impl Into<Object>,
) -> f32 { ... }
fn add(self, funcion: impl Into<Il2CppString>) { ... }
fn add_2(
self,
condtion: impl Into<Il2CppString>,
funcion: impl Into<Il2CppString>,
) { ... }
}Provided Methods§
Sourcefn ctor(self, name: impl Into<Il2CppString>)
fn ctor(self, name: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn get(self, obj1: impl Into<Object>, obj2: impl Into<Object>) -> f32
fn get(self, obj1: impl Into<Object>, obj2: impl Into<Object>) -> f32
Get(crate::system::object::Object, crate::system::object::Object) overload
Sourcefn func(
self,
args: impl Into<List_1<f32>>,
obj1: impl Into<Object>,
obj2: impl Into<Object>,
) -> f32
fn func( self, args: impl Into<List_1<f32>>, obj1: impl Into<Object>, obj2: impl Into<Object>, ) -> f32
Func(crate::system::collections::generic::list_1::List_1<f32>, crate::system::object::Object, crate::system::object::Object) overload
Sourcefn add(self, funcion: impl Into<Il2CppString>)
fn add(self, funcion: impl Into<Il2CppString>)
Add(::unity::Il2CppString) overload
Sourcefn add_2(
self,
condtion: impl Into<Il2CppString>,
funcion: impl Into<Il2CppString>,
)
fn add_2( self, condtion: impl Into<Il2CppString>, funcion: impl Into<Il2CppString>, )
Add(::unity::Il2CppString, ::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: IConditionGetterCommand> IConditionGetterCommandMethods for __T
Available on crate feature
app-conditiongettercommand only.