#[repr(C)]pub struct ModelAnimation {
pub boneCount: i32,
pub frameCount: i32,
pub bones: *mut BoneInfo,
pub framePoses: *mut *mut Transform,
pub name: [i8; 32],
}Fields§
§boneCount: i32§frameCount: i32§bones: *mut BoneInfo§framePoses: *mut *mut Transform§name: [i8; 32]Trait Implementations§
Source§impl AsMut<ModelAnimation> for ModelAnimation
impl AsMut<ModelAnimation> for ModelAnimation
Source§fn as_mut(&mut self) -> &mut ModelAnimation
fn as_mut(&mut self) -> &mut ModelAnimation
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<ModelAnimation> for WeakModelAnimation
impl AsMut<ModelAnimation> for WeakModelAnimation
Source§fn as_mut(&mut self) -> &mut ModelAnimation
fn as_mut(&mut self) -> &mut ModelAnimation
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<ModelAnimation> for ModelAnimation
impl AsRef<ModelAnimation> for ModelAnimation
Source§fn as_ref(&self) -> &ModelAnimation
fn as_ref(&self) -> &ModelAnimation
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<ModelAnimation> for WeakModelAnimation
impl AsRef<ModelAnimation> for WeakModelAnimation
Source§fn as_ref(&self) -> &ModelAnimation
fn as_ref(&self) -> &ModelAnimation
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for ModelAnimation
impl Clone for ModelAnimation
Source§fn clone(&self) -> ModelAnimation
fn clone(&self) -> ModelAnimation
Returns a duplicate of the value. Read more
1.0.0 · 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 ModelAnimation
impl Debug for ModelAnimation
impl Copy for ModelAnimation
Auto Trait Implementations§
impl Freeze for ModelAnimation
impl RefUnwindSafe for ModelAnimation
impl !Send for ModelAnimation
impl !Sync for ModelAnimation
impl Unpin for ModelAnimation
impl UnsafeUnpin for ModelAnimation
impl UnwindSafe for ModelAnimation
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