pub type FT_Raster_Funcs = FT_Raster_Funcs_;

Aliased Type§

struct FT_Raster_Funcs {
    pub glyph_format: FT_Glyph_Format_,
    pub raster_new: Option<unsafe extern "C" fn(_: *mut c_void, _: *mut *mut FT_RasterRec_) -> i32>,
    pub raster_reset: Option<unsafe extern "C" fn(_: *mut FT_RasterRec_, _: *mut u8, _: u64)>,
    pub raster_set_mode: Option<unsafe extern "C" fn(_: *mut FT_RasterRec_, _: u64, _: *mut c_void) -> i32>,
    pub raster_render: Option<unsafe extern "C" fn(_: *mut FT_RasterRec_, _: *const FT_Raster_Params_) -> i32>,
    pub raster_done: Option<unsafe extern "C" fn(_: *mut FT_RasterRec_)>,
}

Fields§

§glyph_format: FT_Glyph_Format_§raster_new: Option<unsafe extern "C" fn(_: *mut c_void, _: *mut *mut FT_RasterRec_) -> i32>§raster_reset: Option<unsafe extern "C" fn(_: *mut FT_RasterRec_, _: *mut u8, _: u64)>§raster_set_mode: Option<unsafe extern "C" fn(_: *mut FT_RasterRec_, _: u64, _: *mut c_void) -> i32>§raster_render: Option<unsafe extern "C" fn(_: *mut FT_RasterRec_, _: *const FT_Raster_Params_) -> i32>§raster_done: Option<unsafe extern "C" fn(_: *mut FT_RasterRec_)>

Trait Implementations§

source§

impl Clone for FT_Raster_Funcs_

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_Raster_Funcs_

source§

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

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

impl Copy for FT_Raster_Funcs_