Type Alias xmlFreeFunc

Source
pub type xmlFreeFunc = Option<unsafe extern "C" fn(mem: *mut c_void)>;
Expand description

xmlFreeFunc: @mem: an already allocated block of memory

Signature for a free() implementation.

Aliased Type§

enum xmlFreeFunc {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void))

Some value of type T.