pub trait IPoser: ISolverManager {
// Provided methods
fn pose_root(self) -> Transform { ... }
fn set_pose_root(self, value: Transform) { ... }
fn weight(self) -> f32 { ... }
fn set_weight(self, value: f32) { ... }
fn local_rotation_weight(self) -> f32 { ... }
fn set_local_rotation_weight(self, value: f32) { ... }
fn local_position_weight(self) -> f32 { ... }
fn set_local_position_weight(self, value: f32) { ... }
fn initiated(self) -> bool { ... }
fn set_initiated(self, value: bool) { ... }
}Provided Methods§
fn pose_root(self) -> Transform
fn set_pose_root(self, value: Transform)
fn weight(self) -> f32
fn set_weight(self, value: f32)
fn local_rotation_weight(self) -> f32
fn set_local_rotation_weight(self, value: f32)
fn local_position_weight(self) -> f32
fn set_local_position_weight(self, value: f32)
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.