pub type fatalErrorSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, msg: *const c_char, ...)>;Expand description
SAX callback for fatal error messages.
@param ctx an XML parser context @param msg the message to display/transmit @param … extra parameters for the message display
Aliased Type§
pub enum fatalErrorSAXFunc {
None,
Some(unsafe extern "C" fn(*mut c_void, *const i8, ...)),
}