xmlHashDeallocator

Type Alias xmlHashDeallocator 

Source
pub type xmlHashDeallocator = Option<unsafe extern "C" fn(payload: *mut c_void, name: *const xmlChar)>;
Expand description

xmlHashDeallocator: @payload: the data in the hash @name: the name associated

Callback to free data from a hash.

Aliased Type§

pub enum xmlHashDeallocator {
    None,
    Some(unsafe extern "C" fn(*mut c_void, *const u8)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut c_void, *const u8))

Some value of type T.