Struct blender_armature::Keyframe[][src]

pub struct Keyframe { /* fields omitted */ }

The pose bones at an individual keyframe time

Implementations

impl Keyframe[src]

pub fn new(frame: u16, bones: Vec<Bone>) -> Self[src]

pub fn bones(&self) -> &Vec<Bone>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

All of the bones for this keyframe.

pub fn bones_mut(&mut self) -> &mut Vec<Bone>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

All of the bones for this keyframe.

pub fn frame(&self) -> u16[src]

The frame number

Trait Implementations

impl Debug for Keyframe[src]

impl<'de> Deserialize<'de> for Keyframe[src]

impl PartialEq<Keyframe> for Keyframe[src]

impl Serialize for Keyframe[src]

impl StructuralPartialEq for Keyframe[src]

Auto Trait Implementations

impl RefUnwindSafe for Keyframe

impl Send for Keyframe

impl Sync for Keyframe

impl Unpin for Keyframe

impl UnwindSafe for Keyframe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,