[][src]Struct leptess::capi::Pix

#[repr(C)]pub struct Pix {
    pub w: u32,
    pub h: u32,
    pub d: u32,
    pub spp: u32,
    pub wpl: u32,
    pub refcount: u32,
    pub xres: i32,
    pub yres: i32,
    pub informat: i32,
    pub special: i32,
    pub text: *mut i8,
    pub colormap: *mut PixColormap,
    pub data: *mut u32,
}

Fields

w: u32h: u32d: u32spp: u32wpl: u32refcount: u32xres: i32yres: i32informat: i32special: i32text: *mut i8colormap: *mut PixColormapdata: *mut u32

Trait Implementations

impl Clone for Pix[src]

impl Copy for Pix[src]

impl Debug for Pix[src]

Auto Trait Implementations

impl RefUnwindSafe for Pix

impl !Send for Pix

impl !Sync for Pix

impl Unpin for Pix

impl UnwindSafe for Pix

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.