pub trait IVRIKCalibrator_CalibrationData_Target: IObject {
// Provided methods
fn used(self) -> bool { ... }
fn set_used(self, value: bool) { ... }
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 used(self) -> bool
fn set_used(self, value: bool)
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.