pub trait IConstraintPositionOffset: IConstraint {
// Provided methods
fn offset(self) -> Vector3 { ... }
fn set_offset(self, value: Vector3) { ... }
fn default_local_position(self) -> Vector3 { ... }
fn set_default_local_position(self, value: Vector3) { ... }
fn last_local_position(self) -> Vector3 { ... }
fn set_last_local_position(self, value: Vector3) { ... }
fn initiated(self) -> bool { ... }
fn set_initiated(self, value: bool) { ... }
}Provided Methods§
fn offset(self) -> Vector3
fn set_offset(self, value: Vector3)
fn default_local_position(self) -> Vector3
fn set_default_local_position(self, value: Vector3)
fn last_local_position(self) -> Vector3
fn set_last_local_position(self, value: Vector3)
fn initiated(self) -> bool
fn set_initiated(self, value: bool)
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.