[][src]Struct spine::ffi::spSkeleton

#[repr(C)]
pub struct spSkeleton {
    pub data: *mut spSkeletonData,
    pub bonesCount: i32,
    pub bones: *mut *mut spBone,
    pub root: *mut spBone,
    pub slotsCount: i32,
    pub slots: *mut *mut spSlot,
    pub drawOrder: *mut *mut spSlot,
    pub ikConstraintsCount: i32,
    pub ikConstraints: *mut *mut spIkConstraint,
    pub transformConstraintsCount: i32,
    pub transformConstraints: *mut *mut spTransformConstraint,
    pub pathConstraintsCount: i32,
    pub pathConstraints: *mut *mut spPathConstraint,
    pub skin: *mut spSkin,
    pub color: spColor,
    pub time: f32,
    pub scaleX: f32,
    pub scaleY: f32,
    pub x: f32,
    pub y: f32,
}

Fields

data: *mut spSkeletonDatabonesCount: i32bones: *mut *mut spBoneroot: *mut spBoneslotsCount: i32slots: *mut *mut spSlotdrawOrder: *mut *mut spSlotikConstraintsCount: i32ikConstraints: *mut *mut spIkConstrainttransformConstraintsCount: i32transformConstraints: *mut *mut spTransformConstraintpathConstraintsCount: i32pathConstraints: *mut *mut spPathConstraintskin: *mut spSkincolor: spColortime: f32scaleX: f32scaleY: f32x: f32y: f32

Trait Implementations

impl Clone for spSkeleton[src]

impl Copy for spSkeleton[src]

impl Debug for spSkeleton[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.