#[repr(C)]
pub struct FT_MemoryRec {
pub user: *mut c_void,
pub alloc: extern "C" fn(*mut FT_MemoryRec, i64) -> *mut c_void,
pub free: extern "C" fn(*mut FT_MemoryRec, *mut c_void),
pub realloc: extern "C" fn(*mut FT_MemoryRec, i64, i64, *mut c_void) -> *mut c_void,
}
Fields
user: *mut c_void
alloc: extern "C" fn(*mut FT_MemoryRec, i64) -> *mut c_void
free: extern "C" fn(*mut FT_MemoryRec, *mut c_void)
realloc: extern "C" fn(*mut FT_MemoryRec, i64, i64, *mut c_void) -> *mut c_void
Trait Implementations