Type Alias ignorableWhitespaceSAXFunc

Source
pub type ignorableWhitespaceSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, ch: *const xmlChar, len: c_int)>;
Expand description

ignorableWhitespaceSAXFunc: @ctx: the user data (XML parser context) @ch: a xmlChar string @len: the number of xmlChar

Receiving some ignorable whitespaces from the parser. UNUSED: by default the DOM building will use characters.

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.