pub struct RuntimeMorphDescriptorV1 {
pub morph_count: u32,
pub bone_offsets: Vec<RuntimeBoneMorphOffsetDescriptorV1>,
pub group_offsets: Vec<RuntimeGroupMorphOffsetDescriptorV1>,
}Expand description
Bone and group morph offsets. Offsets are grouped by morph_index by the
compiler and exposed in ModelArena through spans.
Fields§
§morph_count: u32§bone_offsets: Vec<RuntimeBoneMorphOffsetDescriptorV1>§group_offsets: Vec<RuntimeGroupMorphOffsetDescriptorV1>Trait Implementations§
Source§impl Clone for RuntimeMorphDescriptorV1
impl Clone for RuntimeMorphDescriptorV1
Source§fn clone(&self) -> RuntimeMorphDescriptorV1
fn clone(&self) -> RuntimeMorphDescriptorV1
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 moreSource§impl Debug for RuntimeMorphDescriptorV1
impl Debug for RuntimeMorphDescriptorV1
Source§impl Default for RuntimeMorphDescriptorV1
impl Default for RuntimeMorphDescriptorV1
Source§fn default() -> RuntimeMorphDescriptorV1
fn default() -> RuntimeMorphDescriptorV1
Returns the “default value” for a type. Read more
Source§impl PartialEq for RuntimeMorphDescriptorV1
impl PartialEq for RuntimeMorphDescriptorV1
impl StructuralPartialEq for RuntimeMorphDescriptorV1
Auto Trait Implementations§
impl Freeze for RuntimeMorphDescriptorV1
impl RefUnwindSafe for RuntimeMorphDescriptorV1
impl Send for RuntimeMorphDescriptorV1
impl Sync for RuntimeMorphDescriptorV1
impl Unpin for RuntimeMorphDescriptorV1
impl UnsafeUnpin for RuntimeMorphDescriptorV1
impl UnwindSafe for RuntimeMorphDescriptorV1
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