pub struct FbxAnimation {
pub name: String,
pub duration_seconds: f32,
pub keyframes: Vec<FbxKeyframe>,
}Expand description
Extracted animation clip.
Fields§
§name: String§duration_seconds: f32§keyframes: Vec<FbxKeyframe>Trait Implementations§
Source§impl Clone for FbxAnimation
impl Clone for FbxAnimation
Source§fn clone(&self) -> FbxAnimation
fn clone(&self) -> FbxAnimation
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 moreAuto Trait Implementations§
impl Freeze for FbxAnimation
impl RefUnwindSafe for FbxAnimation
impl Send for FbxAnimation
impl Sync for FbxAnimation
impl Unpin for FbxAnimation
impl UnsafeUnpin for FbxAnimation
impl UnwindSafe for FbxAnimation
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