pub type errorSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, msg: *const c_char, ...)>;Expand description
SAX callback for 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 errorSAXFunc {
None,
Some(unsafe extern "C" fn(*mut c_void, *const i8, ...)),
}