pub trait IIKMappingBone: IIKMapping {
// Provided methods
fn bone(self) -> Transform { ... }
fn set_bone(self, value: Transform) { ... }
fn maintain_rotation_weight(self) -> f32 { ... }
fn set_maintain_rotation_weight(self, value: f32) { ... }
fn bone_map(self) -> IKMapping_BoneMap { ... }
fn set_bone_map(self, value: IKMapping_BoneMap) { ... }
}Provided Methods§
fn bone(self) -> Transform
fn set_bone(self, value: Transform)
fn maintain_rotation_weight(self) -> f32
fn set_maintain_rotation_weight(self, value: f32)
fn bone_map(self) -> IKMapping_BoneMap
fn set_bone_map(self, value: IKMapping_BoneMap)
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.