Struct freetype::ffi::FT_MemoryRec [−] [src]

pub struct FT_MemoryRec {
    pub user: *mut c_void,
    pub alloc:  extern "C" fn(*const FT_MemoryRec, i64) -> *mut c_void,
    pub free:  extern "C" fn(*const FT_MemoryRec, *mut c_void),
    pub realloc:  extern "C" fn(*const FT_MemoryRec, i64, i64, *mut c_void) -> *mut c_void,
}

Fields

user
alloc
free
realloc

Trait Implementations

impl Sync for FT_MemoryRec