pub struct MorphInit {
pub morph_count: u32,
pub vertex_offsets: Vec<VertexMorphOffset>,
pub vertex_spans: Vec<MorphOffsetSpan>,
pub bone_offsets: Vec<BoneMorphOffset>,
pub bone_spans: Vec<MorphOffsetSpan>,
pub group_offsets: Vec<GroupMorphOffset>,
pub group_spans: Vec<MorphOffsetSpan>,
}Fields§
§morph_count: u32§vertex_offsets: Vec<VertexMorphOffset>§vertex_spans: Vec<MorphOffsetSpan>§bone_offsets: Vec<BoneMorphOffset>§bone_spans: Vec<MorphOffsetSpan>§group_offsets: Vec<GroupMorphOffset>§group_spans: Vec<MorphOffsetSpan>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MorphInit
impl RefUnwindSafe for MorphInit
impl Send for MorphInit
impl Sync for MorphInit
impl Unpin for MorphInit
impl UnsafeUnpin for MorphInit
impl UnwindSafe for MorphInit
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