pub trait IDebugCommandline_OptwPropertyMethods: IDebugCommandline_OptwProperty {
// Provided methods
fn ctor(
self,
info: impl Into<PropertyInfo>,
attribute: impl Into<DebugCommandline_OptionWildcardAttribute>,
) { ... }
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>,
attribute: impl Into<DebugCommandline_OptionWildcardAttribute>,
)
fn ctor( self, info: impl Into<PropertyInfo>, attribute: impl Into<DebugCommandline_OptionWildcardAttribute>, )
.ctor(crate::system::reflection::propertyinfo::PropertyInfo, crate::app::debugcommandline::DebugCommandline_OptionWildcardAttribute) 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_OptwProperty> IDebugCommandline_OptwPropertyMethods for __T
Available on crate feature
app-debugcommandline only.