[][src]Struct spine::ffi::spBone

#[repr(C)]
pub struct spBone {
    pub data: *mut spBoneData,
    pub skeleton: *mut spSkeleton,
    pub parent: *mut spBone,
    pub childrenCount: i32,
    pub children: *mut *mut spBone,
    pub x: f32,
    pub y: f32,
    pub rotation: f32,
    pub scaleX: f32,
    pub scaleY: f32,
    pub shearX: f32,
    pub shearY: f32,
    pub ax: f32,
    pub ay: f32,
    pub arotation: f32,
    pub ascaleX: f32,
    pub ascaleY: f32,
    pub ashearX: f32,
    pub ashearY: f32,
    pub appliedValid: i32,
    pub a: f32,
    pub b: f32,
    pub worldX: f32,
    pub c: f32,
    pub d: f32,
    pub worldY: f32,
    pub sorted: i32,
    pub active: i32,
}

Fields

data: *mut spBoneDataskeleton: *mut spSkeletonparent: *mut spBonechildrenCount: i32children: *mut *mut spBonex: f32y: f32rotation: f32scaleX: f32scaleY: f32shearX: f32shearY: f32ax: f32ay: f32arotation: f32ascaleX: f32ascaleY: f32ashearX: f32ashearY: f32appliedValid: i32a: f32b: f32worldX: f32c: f32d: f32worldY: f32sorted: i32active: i32

Trait Implementations

impl Clone for spBone[src]

impl Copy for spBone[src]

impl Debug for spBone[src]

Auto Trait Implementations

impl RefUnwindSafe for spBone

impl !Send for spBone

impl !Sync for spBone

impl Unpin for spBone

impl UnwindSafe for spBone

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.