Type Alias xmlHashCopier

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

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

Callback to copy data from a hash.

Returns a copy of the data or NULL in case of error.

Aliased Type§

enum xmlHashCopier {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8) -> *mut c_void)

Some value of type T.