pub type FT_Raster_Params = FT_Raster_Params_;

Aliased Type§

struct FT_Raster_Params {
    pub target: *const FT_Bitmap_,
    pub source: *const c_void,
    pub flags: i32,
    pub gray_spans: Option<unsafe extern "C" fn(_: i32, _: i32, _: *const FT_Span_, _: *mut c_void)>,
    pub black_spans: Option<unsafe extern "C" fn(_: i32, _: i32, _: *const FT_Span_, _: *mut c_void)>,
    pub bit_test: Option<unsafe extern "C" fn(_: i32, _: i32, _: *mut c_void) -> i32>,
    pub bit_set: Option<unsafe extern "C" fn(_: i32, _: i32, _: *mut c_void)>,
    pub user: *mut c_void,
    pub clip_box: FT_BBox_,
}

Fields§

§target: *const FT_Bitmap_§source: *const c_void§flags: i32§gray_spans: Option<unsafe extern "C" fn(_: i32, _: i32, _: *const FT_Span_, _: *mut c_void)>§black_spans: Option<unsafe extern "C" fn(_: i32, _: i32, _: *const FT_Span_, _: *mut c_void)>§bit_test: Option<unsafe extern "C" fn(_: i32, _: i32, _: *mut c_void) -> i32>§bit_set: Option<unsafe extern "C" fn(_: i32, _: i32, _: *mut c_void)>§user: *mut c_void§clip_box: FT_BBox_

Trait Implementations§

source§

impl Clone for FT_Raster_Params_

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_Params_

source§

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

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

impl Copy for FT_Raster_Params_