Type Alias freetype::freetype::FT_Bitmap

source ·
pub type FT_Bitmap = FT_Bitmap_;

Aliased Type§

struct FT_Bitmap {
    pub rows: u32,
    pub width: u32,
    pub pitch: i32,
    pub buffer: *mut u8,
    pub num_grays: u16,
    pub pixel_mode: u8,
    pub palette_mode: u8,
    pub palette: *mut c_void,
}

Fields§

§rows: u32§width: u32§pitch: i32§buffer: *mut u8§num_grays: u16§pixel_mode: u8§palette_mode: u8§palette: *mut c_void

Trait Implementations§

source§

impl Clone for FT_Bitmap_

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FT_Bitmap_

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for FT_Bitmap_