[][src]Struct spine::ffi::spPathConstraint

#[repr(C)]
pub struct spPathConstraint {
    pub data: *mut spPathConstraintData,
    pub bonesCount: i32,
    pub bones: *mut *mut spBone,
    pub target: *mut spSlot,
    pub position: f32,
    pub spacing: f32,
    pub rotateMix: f32,
    pub translateMix: f32,
    pub spacesCount: i32,
    pub spaces: *mut f32,
    pub positionsCount: i32,
    pub positions: *mut f32,
    pub worldCount: i32,
    pub world: *mut f32,
    pub curvesCount: i32,
    pub curves: *mut f32,
    pub lengthsCount: i32,
    pub lengths: *mut f32,
    pub segments: [f32; 10],
    pub active: i32,
}

Fields

data: *mut spPathConstraintDatabonesCount: i32bones: *mut *mut spBonetarget: *mut spSlotposition: f32spacing: f32rotateMix: f32translateMix: f32spacesCount: i32spaces: *mut f32positionsCount: i32positions: *mut f32worldCount: i32world: *mut f32curvesCount: i32curves: *mut f32lengthsCount: i32lengths: *mut f32segments: [f32; 10]active: i32

Trait Implementations

impl Clone for spPathConstraint[src]

impl Copy for spPathConstraint[src]

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