[][src]Struct spine::ffi::spBoneData

#[repr(C)]
pub struct spBoneData {
    pub index: i32,
    pub name: *const i8,
    pub parent: *mut spBoneData,
    pub length: f32,
    pub x: f32,
    pub y: f32,
    pub rotation: f32,
    pub scaleX: f32,
    pub scaleY: f32,
    pub shearX: f32,
    pub shearY: f32,
    pub transformMode: u32,
    pub skinRequired: i32,
}

Fields

index: i32name: *const i8parent: *mut spBoneDatalength: f32x: f32y: f32rotation: f32scaleX: f32scaleY: f32shearX: f32shearY: f32transformMode: u32skinRequired: i32

Trait Implementations

impl Clone for spBoneData[src]

impl Copy for spBoneData[src]

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