[][src]Struct bone_cake::structs::Armature

pub struct Armature {
    pub armature_type: Option<String>,
    pub frame_rate: Option<i64>,
    pub name: Option<String>,
    pub aabb: Option<Aabb>,
    pub bone: Option<Vec<ArmatureBone>>,
    pub slot: Option<Vec<ArmatureSlot>>,
    pub skin: Option<Vec<Skin>>,
    pub animation: Option<Vec<Animation>>,
    pub default_actions: Option<Vec<DefaultAction>>,
}

Fields

armature_type: Option<String>frame_rate: Option<i64>name: Option<String>aabb: Option<Aabb>bone: Option<Vec<ArmatureBone>>slot: Option<Vec<ArmatureSlot>>skin: Option<Vec<Skin>>animation: Option<Vec<Animation>>default_actions: Option<Vec<DefaultAction>>

Trait Implementations

impl Debug for Armature[src][]

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

Auto Trait Implementations

impl RefUnwindSafe for Armature

impl Send for Armature

impl Sync for Armature

impl Unpin for Armature

impl UnwindSafe for Armature

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: Deserialize<'de>, 
[src]

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

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

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.