pub struct ReducedBoneKey {
pub sample_index: usize,
pub translation: Vec3A,
pub rotation: Quat,
pub vmd_interpolation: VmdBoneInterpolation,
pub dcc_segment: DccCubicSegment,
}Fields§
§sample_index: usize§translation: Vec3A§rotation: Quat§vmd_interpolation: VmdBoneInterpolation§dcc_segment: DccCubicSegmentTrait Implementations§
Source§impl Clone for ReducedBoneKey
impl Clone for ReducedBoneKey
Source§fn clone(&self) -> ReducedBoneKey
fn clone(&self) -> ReducedBoneKey
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 moreimpl Copy for ReducedBoneKey
Source§impl Debug for ReducedBoneKey
impl Debug for ReducedBoneKey
Source§impl PartialEq for ReducedBoneKey
impl PartialEq for ReducedBoneKey
impl StructuralPartialEq for ReducedBoneKey
Auto Trait Implementations§
impl Freeze for ReducedBoneKey
impl RefUnwindSafe for ReducedBoneKey
impl Send for ReducedBoneKey
impl Sync for ReducedBoneKey
impl Unpin for ReducedBoneKey
impl UnsafeUnpin for ReducedBoneKey
impl UnwindSafe for ReducedBoneKey
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more