pub trait IArrayMemberDescriptorMethods: IArrayMemberDescriptor {
// Provided methods
fn ctor(
self,
name: impl Into<Il2CppString>,
is_setter: impl Into<bool>,
indexer_params: impl Into<Array<ParameterDescriptor>>,
) { ... }
fn ctor_2(self, name: impl Into<Il2CppString>, is_setter: impl Into<bool>) { ... }
fn prepare_for_wiring(self, t: impl Into<Table>) { ... }
}Provided Methods§
Sourcefn ctor(
self,
name: impl Into<Il2CppString>,
is_setter: impl Into<bool>,
indexer_params: impl Into<Array<ParameterDescriptor>>,
)
fn ctor( self, name: impl Into<Il2CppString>, is_setter: impl Into<bool>, indexer_params: impl Into<Array<ParameterDescriptor>>, )
.ctor(::unity::Il2CppString, bool, ::unity::Array<crate::moon_sharp::interpreter::interop::basic_descriptors::parameterdescriptor::ParameterDescriptor>) overload
Sourcefn ctor_2(self, name: impl Into<Il2CppString>, is_setter: impl Into<bool>)
fn ctor_2(self, name: impl Into<Il2CppString>, is_setter: impl Into<bool>)
.ctor(::unity::Il2CppString, bool) overload
Sourcefn prepare_for_wiring(self, t: impl Into<Table>)
fn prepare_for_wiring(self, t: impl Into<Table>)
PrepareForWiring(crate::moon_sharp::interpreter::table::Table) 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: IArrayMemberDescriptor> IArrayMemberDescriptorMethods for __T
Available on crate feature
moon_sharp-interpreter-interop-arraymemberdescriptor only.