pub trait IRagdollUtility_Child: IObject {
// Provided methods
fn t(self) -> Transform { ... }
fn set_t(self, value: Transform) { ... }
fn local_position(self) -> Vector3 { ... }
fn set_local_position(self, value: Vector3) { ... }
fn local_rotation(self) -> Quaternion { ... }
fn set_local_rotation(self, value: Quaternion) { ... }
}Provided Methods§
fn t(self) -> Transform
fn set_t(self, value: Transform)
fn local_position(self) -> Vector3
fn set_local_position(self, value: Vector3)
fn local_rotation(self) -> Quaternion
fn set_local_rotation(self, value: Quaternion)
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.