pub struct MovableBoneKeyframe {
pub frame: u32,
pub position: Vec3A,
pub rotation: Quat,
pub position_interpolation: InterpolationVector3,
pub rotation_interpolation: InterpolationScalar,
}Fields§
§frame: u32§position: Vec3A§rotation: Quat§position_interpolation: InterpolationVector3§rotation_interpolation: InterpolationScalarImplementations§
Trait Implementations§
Source§impl Clone for MovableBoneKeyframe
impl Clone for MovableBoneKeyframe
Source§fn clone(&self) -> MovableBoneKeyframe
fn clone(&self) -> MovableBoneKeyframe
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MovableBoneKeyframe
impl RefUnwindSafe for MovableBoneKeyframe
impl Send for MovableBoneKeyframe
impl Sync for MovableBoneKeyframe
impl Unpin for MovableBoneKeyframe
impl UnsafeUnpin for MovableBoneKeyframe
impl UnwindSafe for MovableBoneKeyframe
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more