Skip to main content

ITMP_Asset

Trait ITMP_Asset 

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

Source

fn m_instance_id(self) -> i32

Source

fn set_m_instance_id(self, value: i32)

Source

fn hash_code(self) -> i32

Source

fn set_hash_code(self, value: i32)

Source

fn material(self) -> Material

Source

fn set_material(self, value: Material)

Source

fn material_hash_code(self) -> i32

Source

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.

Implementors§