pub trait IDebugCommandline_PropertyMethods: IDebugCommandline_Property {
// Provided methods
fn ctor(self, info: impl Into<PropertyInfo>) { ... }
fn process(
self,
obj: impl Into<Object>,
args: impl Into<Array<Il2CppString>>,
arg_index: impl Into<i32>,
) -> i32 { ... }
fn get_sort_value(self) -> i32 { ... }
}Provided Methods§
Sourcefn ctor(self, info: impl Into<PropertyInfo>)
fn ctor(self, info: impl Into<PropertyInfo>)
.ctor(crate::system::reflection::propertyinfo::PropertyInfo) overload
Sourcefn process(
self,
obj: impl Into<Object>,
args: impl Into<Array<Il2CppString>>,
arg_index: impl Into<i32>,
) -> i32
fn process( self, obj: impl Into<Object>, args: impl Into<Array<Il2CppString>>, arg_index: impl Into<i32>, ) -> i32
Process(crate::system::object::Object, ::unity::Array<::unity::Il2CppString>, i32) overload
Sourcefn get_sort_value(self) -> i32
fn get_sort_value(self) -> i32
get_SortValue() 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: IDebugCommandline_Property> IDebugCommandline_PropertyMethods for __T
Available on crate feature
app-debugcommandline only.