pub trait IPropertyTableAssigner: IObject {
// Provided methods
fn m_type(self) -> SystemType { ... }
fn set_m_type(self, value: SystemType) { ... }
fn m_property_map(self) -> Dictionary_2<Il2CppString, PropertyInfo> { ... }
fn set_m_property_map(self, value: Dictionary_2<Il2CppString, PropertyInfo>) { ... }
fn m_sub_assigners(
self,
) -> Dictionary_2<SystemType, IPropertyTableAssigner_Interface> { ... }
fn set_m_sub_assigners(
self,
value: Dictionary_2<SystemType, IPropertyTableAssigner_Interface>,
) { ... }
}Provided Methods§
fn m_type(self) -> SystemType
fn set_m_type(self, value: SystemType)
fn m_property_map(self) -> Dictionary_2<Il2CppString, PropertyInfo>
fn set_m_property_map(self, value: Dictionary_2<Il2CppString, PropertyInfo>)
fn m_sub_assigners( self, ) -> Dictionary_2<SystemType, IPropertyTableAssigner_Interface>
fn set_m_sub_assigners( self, value: Dictionary_2<SystemType, IPropertyTableAssigner_Interface>, )
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.