pub trait IUnitInfoWeaponModelPool: IObject {
// Provided methods
fn m_left_weapon_dictionary(
self,
) -> Dictionary_2<Il2CppString, CharacterAsset> { ... }
fn set_m_left_weapon_dictionary(
self,
value: Dictionary_2<Il2CppString, CharacterAsset>,
) { ... }
fn m_right_weapon_dictionary(
self,
) -> Dictionary_2<Il2CppString, CharacterAsset> { ... }
fn set_m_right_weapon_dictionary(
self,
value: Dictionary_2<Il2CppString, CharacterAsset>,
) { ... }
}Provided Methods§
fn m_left_weapon_dictionary(self) -> Dictionary_2<Il2CppString, CharacterAsset>
fn set_m_left_weapon_dictionary( self, value: Dictionary_2<Il2CppString, CharacterAsset>, )
fn m_right_weapon_dictionary(self) -> Dictionary_2<Il2CppString, CharacterAsset>
fn set_m_right_weapon_dictionary( self, value: Dictionary_2<Il2CppString, CharacterAsset>, )
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.