pub struct PmmDocumentModelSections {Show 16 fields
pub initial_bone_keyframes_offset: usize,
pub bone_keyframe_count_offset: usize,
pub bone_keyframes_offset: usize,
pub bone_keyframes_end_offset: usize,
pub initial_morph_keyframes_offset: usize,
pub morph_keyframe_count_offset: usize,
pub morph_keyframes_offset: usize,
pub morph_keyframes_end_offset: usize,
pub initial_model_keyframe_offset: usize,
pub model_keyframe_count_offset: usize,
pub model_keyframes_offset: usize,
pub model_keyframes_end_offset: usize,
pub bone_states_offset: usize,
pub morph_states_offset: usize,
pub constraint_states_offset: usize,
pub outside_parent_states_offset: usize,
}Fields§
§initial_bone_keyframes_offset: usize§bone_keyframe_count_offset: usize§bone_keyframes_offset: usize§bone_keyframes_end_offset: usize§initial_morph_keyframes_offset: usize§morph_keyframe_count_offset: usize§morph_keyframes_offset: usize§morph_keyframes_end_offset: usize§initial_model_keyframe_offset: usize§model_keyframe_count_offset: usize§model_keyframes_offset: usize§model_keyframes_end_offset: usize§bone_states_offset: usize§morph_states_offset: usize§constraint_states_offset: usize§outside_parent_states_offset: usizeTrait Implementations§
Source§impl Clone for PmmDocumentModelSections
impl Clone for PmmDocumentModelSections
Source§fn clone(&self) -> PmmDocumentModelSections
fn clone(&self) -> PmmDocumentModelSections
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 PmmDocumentModelSections
impl Debug for PmmDocumentModelSections
Auto Trait Implementations§
impl Freeze for PmmDocumentModelSections
impl RefUnwindSafe for PmmDocumentModelSections
impl Send for PmmDocumentModelSections
impl Sync for PmmDocumentModelSections
impl Unpin for PmmDocumentModelSections
impl UnsafeUnpin for PmmDocumentModelSections
impl UnwindSafe for PmmDocumentModelSections
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