pub trait IAssetReference: IObject {
// Provided methods
fn m_asset_guid(self) -> Il2CppString { ... }
fn set_m_asset_guid(self, value: Il2CppString) { ... }
fn m_sub_object_name(self) -> Il2CppString { ... }
fn set_m_sub_object_name(self, value: Il2CppString) { ... }
fn m_sub_object_type(self) -> Il2CppString { ... }
fn set_m_sub_object_type(self, value: Il2CppString) { ... }
fn m_operation(self) -> AsyncOperationHandle { ... }
fn set_m_operation(self, value: AsyncOperationHandle) { ... }
}Provided Methods§
fn m_asset_guid(self) -> Il2CppString
fn set_m_asset_guid(self, value: Il2CppString)
fn m_sub_object_name(self) -> Il2CppString
fn set_m_sub_object_name(self, value: Il2CppString)
fn m_sub_object_type(self) -> Il2CppString
fn set_m_sub_object_type(self, value: Il2CppString)
fn m_operation(self) -> AsyncOperationHandle
fn set_m_operation(self, value: AsyncOperationHandle)
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.