pub trait IMaterialBehaviour_TextureInfo: IObject {
// Provided methods
fn name(self) -> Il2CppString { ... }
fn set_name(self, value: Il2CppString) { ... }
fn attr(self) -> Il2CppString { ... }
fn set_attr(self, value: Il2CppString) { ... }
fn tiling(self) -> Vector2 { ... }
fn set_tiling(self, value: Vector2) { ... }
fn offset(self) -> Vector2 { ... }
fn set_offset(self, value: Vector2) { ... }
}Provided Methods§
fn name(self) -> Il2CppString
fn set_name(self, value: Il2CppString)
fn attr(self) -> Il2CppString
fn set_attr(self, value: Il2CppString)
fn tiling(self) -> Vector2
fn set_tiling(self, value: Vector2)
fn offset(self) -> Vector2
fn set_offset(self, value: Vector2)
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.