pub trait ITMP_Asset: IScriptableObject {
// Provided methods
fn m_instance_id(self) -> i32 { ... }
fn set_m_instance_id(self, value: i32) { ... }
fn hash_code(self) -> i32 { ... }
fn set_hash_code(self, value: i32) { ... }
fn material(self) -> Material { ... }
fn set_material(self, value: Material) { ... }
fn material_hash_code(self) -> i32 { ... }
fn set_material_hash_code(self, value: i32) { ... }
}Provided Methods§
fn m_instance_id(self) -> i32
fn set_m_instance_id(self, value: i32)
fn hash_code(self) -> i32
fn set_hash_code(self, value: i32)
fn material(self) -> Material
fn set_material(self, value: Material)
fn material_hash_code(self) -> i32
fn set_material_hash_code(self, value: i32)
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.