[][src]Struct spine::ffi::spAtlasRegion

#[repr(C)]
pub struct spAtlasRegion {
    pub name: *const i8,
    pub x: i32,
    pub y: i32,
    pub width: i32,
    pub height: i32,
    pub u: f32,
    pub v: f32,
    pub u2: f32,
    pub v2: f32,
    pub offsetX: i32,
    pub offsetY: i32,
    pub originalWidth: i32,
    pub originalHeight: i32,
    pub index: i32,
    pub rotate: i32,
    pub degrees: i32,
    pub flip: i32,
    pub splits: *mut i32,
    pub pads: *mut i32,
    pub page: *mut spAtlasPage,
    pub next: *mut spAtlasRegion,
}

Fields

name: *const i8x: i32y: i32width: i32height: i32u: f32v: f32u2: f32v2: f32offsetX: i32offsetY: i32originalWidth: i32originalHeight: i32index: i32rotate: i32degrees: i32flip: i32splits: *mut i32pads: *mut i32page: *mut spAtlasPagenext: *mut spAtlasRegion

Trait Implementations

impl Clone for spAtlasRegion[src]

impl Copy for spAtlasRegion[src]

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