Type Alias xmlListDeallocator

Source
pub type xmlListDeallocator = Option<unsafe extern "C" fn(lk: xmlLinkPtr)>;
Expand description

xmlListDeallocator: @lk: the data to deallocate

Callback function used to free data from a list.

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.