pub trait IEditorIKPose: IScriptableObject {
// Provided methods
fn local_positions(self) -> Array<Vector3> { ... }
fn set_local_positions(self, value: Array<Vector3>) { ... }
fn local_rotations(self) -> Array<Quaternion> { ... }
fn set_local_rotations(self, value: Array<Quaternion>) { ... }
}Provided Methods§
fn local_positions(self) -> Array<Vector3>
fn set_local_positions(self, value: Array<Vector3>)
fn local_rotations(self) -> Array<Quaternion>
fn set_local_rotations(self, value: Array<Quaternion>)
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.