Type Alias endDocumentSAXFunc

Source
pub type endDocumentSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void)>;
Expand description

endDocumentSAXFunc: @ctx: the user data (XML parser context)

Called when the document end has been detected.

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.