Skip to main content

IArrayMemberDescriptorMethods

Trait IArrayMemberDescriptorMethods 

Source
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§

Source

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

Source

fn ctor_2(self, name: impl Into<Il2CppString>, is_setter: impl Into<bool>)

.ctor(::unity::Il2CppString, bool) overload

Source

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§

Source§

impl<__T: IArrayMemberDescriptor> IArrayMemberDescriptorMethods for __T

Available on crate feature moon_sharp-interpreter-interop-arraymemberdescriptor only.