Struct glib_sys::GMemVTable [] [src]

pub struct GMemVTable {
    pub malloc: Option<unsafe  extern "C" fn(size_t) -> gpointer>,
    pub realloc: Option<unsafe  extern "C" fn(gpointer, size_t) -> gpointer>,
    pub free: Option<unsafe  extern "C" fn(gpointer)>,
    pub calloc: Option<unsafe  extern "C" fn(size_t, size_t) -> gpointer>,
    pub try_malloc: Option<unsafe  extern "C" fn(size_t) -> gpointer>,
    pub try_realloc: Option<unsafe  extern "C" fn(gpointer, size_t) -> gpointer>,
}

Fields

malloc
realloc
free
calloc
try_malloc
try_realloc