#[repr(C)]pub struct ModelSkeleton {
pub boneCount: c_int,
pub bones: *mut BoneInfo,
pub bindPose: ModelAnimPose,
}Fields§
§boneCount: c_int§bones: *mut BoneInfo§bindPose: ModelAnimPoseTrait Implementations§
Source§impl Clone for ModelSkeleton
impl Clone for ModelSkeleton
Source§fn clone(&self) -> ModelSkeleton
fn clone(&self) -> ModelSkeleton
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 ModelSkeleton
Source§impl Debug for ModelSkeleton
impl Debug for ModelSkeleton
Source§impl Default for ModelSkeleton
impl Default for ModelSkeleton
Source§impl PartialEq for ModelSkeleton
impl PartialEq for ModelSkeleton
Source§fn eq(&self, other: &ModelSkeleton) -> bool
fn eq(&self, other: &ModelSkeleton) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModelSkeleton
Auto Trait Implementations§
impl !Send for ModelSkeleton
impl !Sync for ModelSkeleton
impl Freeze for ModelSkeleton
impl RefUnwindSafe for ModelSkeleton
impl Unpin for ModelSkeleton
impl UnsafeUnpin for ModelSkeleton
impl UnwindSafe for ModelSkeleton
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