pub type FT_Outline_Funcs = FT_Outline_Funcs_;

Aliased Type§

struct FT_Outline_Funcs {
    pub move_to: Option<unsafe extern "C" fn(_: *const FT_Vector_, _: *mut c_void) -> i32>,
    pub line_to: Option<unsafe extern "C" fn(_: *const FT_Vector_, _: *mut c_void) -> i32>,
    pub conic_to: Option<unsafe extern "C" fn(_: *const FT_Vector_, _: *const FT_Vector_, _: *mut c_void) -> i32>,
    pub cubic_to: Option<unsafe extern "C" fn(_: *const FT_Vector_, _: *const FT_Vector_, _: *const FT_Vector_, _: *mut c_void) -> i32>,
    pub shift: i32,
    pub delta: i64,
}

Fields§

§move_to: Option<unsafe extern "C" fn(_: *const FT_Vector_, _: *mut c_void) -> i32>§line_to: Option<unsafe extern "C" fn(_: *const FT_Vector_, _: *mut c_void) -> i32>§conic_to: Option<unsafe extern "C" fn(_: *const FT_Vector_, _: *const FT_Vector_, _: *mut c_void) -> i32>§cubic_to: Option<unsafe extern "C" fn(_: *const FT_Vector_, _: *const FT_Vector_, _: *const FT_Vector_, _: *mut c_void) -> i32>§shift: i32§delta: i64

Trait Implementations§

source§

impl Clone for FT_Outline_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_Outline_Funcs_

source§

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

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

impl Copy for FT_Outline_Funcs_