[][src]Struct spine::ffi::spMeshAttachment

#[repr(C)]
pub struct spMeshAttachment {
    pub super_: spVertexAttachment,
    pub rendererObject: *mut c_void,
    pub regionOffsetX: i32,
    pub regionOffsetY: i32,
    pub regionWidth: i32,
    pub regionHeight: i32,
    pub regionOriginalWidth: i32,
    pub regionOriginalHeight: i32,
    pub regionU: f32,
    pub regionV: f32,
    pub regionU2: f32,
    pub regionV2: f32,
    pub regionRotate: i32,
    pub regionDegrees: i32,
    pub path: *const i8,
    pub regionUVs: *mut f32,
    pub uvs: *mut f32,
    pub trianglesCount: i32,
    pub triangles: *mut u16,
    pub color: spColor,
    pub hullLength: i32,
    pub parentMesh: *mut spMeshAttachment,
    pub edgesCount: i32,
    pub edges: *mut i32,
    pub width: f32,
    pub height: f32,
}

Fields

super_: spVertexAttachmentrendererObject: *mut c_voidregionOffsetX: i32regionOffsetY: i32regionWidth: i32regionHeight: i32regionOriginalWidth: i32regionOriginalHeight: i32regionU: f32regionV: f32regionU2: f32regionV2: f32regionRotate: i32regionDegrees: i32path: *const i8regionUVs: *mut f32uvs: *mut f32trianglesCount: i32triangles: *mut u16color: spColorhullLength: i32parentMesh: *mut spMeshAttachmentedgesCount: i32edges: *mut i32width: f32height: f32

Trait Implementations

impl Clone for spMeshAttachment[src]

impl Copy for spMeshAttachment[src]

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