pub trait IGrounding_Pelvis: IObject {
// Provided methods
fn grounding(self) -> Grounding { ... }
fn set_grounding(self, value: Grounding) { ... }
fn last_root_position(self) -> Vector3 { ... }
fn set_last_root_position(self, value: Vector3) { ... }
fn damper_f(self) -> f32 { ... }
fn set_damper_f(self, value: f32) { ... }
fn initiated(self) -> bool { ... }
fn set_initiated(self, value: bool) { ... }
fn last_time(self) -> f64 { ... }
fn set_last_time(self, value: f64) { ... }
}Provided Methods§
fn grounding(self) -> Grounding
fn set_grounding(self, value: Grounding)
fn last_root_position(self) -> Vector3
fn set_last_root_position(self, value: Vector3)
fn damper_f(self) -> f32
fn set_damper_f(self, value: f32)
fn initiated(self) -> bool
fn set_initiated(self, value: bool)
fn last_time(self) -> f64
fn set_last_time(self, value: f64)
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.