pub trait IConstraints: IObject {
Show 16 methods
// Provided methods
fn transform(self) -> Transform { ... }
fn set_transform(self, value: Transform) { ... }
fn target(self) -> Transform { ... }
fn set_target(self, value: Transform) { ... }
fn position_offset(self) -> Vector3 { ... }
fn set_position_offset(self, value: Vector3) { ... }
fn position(self) -> Vector3 { ... }
fn set_position(self, value: Vector3) { ... }
fn position_weight(self) -> f32 { ... }
fn set_position_weight(self, value: f32) { ... }
fn rotation_offset(self) -> Vector3 { ... }
fn set_rotation_offset(self, value: Vector3) { ... }
fn rotation(self) -> Vector3 { ... }
fn set_rotation(self, value: Vector3) { ... }
fn rotation_weight(self) -> f32 { ... }
fn set_rotation_weight(self, value: f32) { ... }
}Provided Methods§
fn transform(self) -> Transform
fn set_transform(self, value: Transform)
fn target(self) -> Transform
fn set_target(self, value: Transform)
fn position_offset(self) -> Vector3
fn set_position_offset(self, value: Vector3)
fn position(self) -> Vector3
fn set_position(self, value: Vector3)
fn position_weight(self) -> f32
fn set_position_weight(self, value: f32)
fn rotation_offset(self) -> Vector3
fn set_rotation_offset(self, value: Vector3)
fn rotation(self) -> Vector3
fn set_rotation(self, value: Vector3)
fn rotation_weight(self) -> f32
fn set_rotation_weight(self, value: f32)
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.