[][src]Struct spine::ffi::spSkeletonData

#[repr(C)]
pub struct spSkeletonData {
    pub version: *const i8,
    pub hash: *const i8,
    pub x: f32,
    pub y: f32,
    pub width: f32,
    pub height: f32,
    pub stringsCount: i32,
    pub strings: *mut *mut i8,
    pub bonesCount: i32,
    pub bones: *mut *mut spBoneData,
    pub slotsCount: i32,
    pub slots: *mut *mut spSlotData,
    pub skinsCount: i32,
    pub skins: *mut *mut spSkin,
    pub defaultSkin: *mut spSkin,
    pub eventsCount: i32,
    pub events: *mut *mut spEventData,
    pub animationsCount: i32,
    pub animations: *mut *mut spAnimation,
    pub ikConstraintsCount: i32,
    pub ikConstraints: *mut *mut spIkConstraintData,
    pub transformConstraintsCount: i32,
    pub transformConstraints: *mut *mut spTransformConstraintData,
    pub pathConstraintsCount: i32,
    pub pathConstraints: *mut *mut spPathConstraintData,
}

Fields

version: *const i8hash: *const i8x: f32y: f32width: f32height: f32stringsCount: i32strings: *mut *mut i8bonesCount: i32bones: *mut *mut spBoneDataslotsCount: i32slots: *mut *mut spSlotDataskinsCount: i32skins: *mut *mut spSkindefaultSkin: *mut spSkineventsCount: i32events: *mut *mut spEventDataanimationsCount: i32animations: *mut *mut spAnimationikConstraintsCount: i32ikConstraints: *mut *mut spIkConstraintDatatransformConstraintsCount: i32transformConstraints: *mut *mut spTransformConstraintDatapathConstraintsCount: i32pathConstraints: *mut *mut spPathConstraintData

Trait Implementations

impl Clone for spSkeletonData[src]

impl Copy for spSkeletonData[src]

impl Debug for spSkeletonData[src]

Auto Trait Implementations

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.