Type Alias xmlHashScannerFull

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

xmlHashScannerFull: @payload: the data in the hash @data: extra scanner data @name: the name associated @name2: the second name associated @name3: the third name associated

Callback when scanning data in a hash with the full scanner.

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.