[][src]Struct freetype_sys::FT_Bitmap

#[repr(C)]pub struct FT_Bitmap {
    pub rows: c_int,
    pub width: c_int,
    pub pitch: c_int,
    pub buffer: *mut c_uchar,
    pub num_grays: c_short,
    pub pixel_mode: c_char,
    pub palette_mode: c_char,
    pub palette: *mut c_void,
}

Fields

rows: c_intwidth: c_intpitch: c_intbuffer: *mut c_ucharnum_grays: c_shortpixel_mode: c_charpalette_mode: c_charpalette: *mut c_void

Trait Implementations

impl Debug for FT_Bitmap[src]

impl Eq for FT_Bitmap[src]

impl Hash for FT_Bitmap[src]

impl PartialEq<FT_Bitmap> for FT_Bitmap[src]

impl StructuralEq for FT_Bitmap[src]

impl StructuralPartialEq for FT_Bitmap[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, 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.