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