pub type charactersSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, ch: *const xmlChar, len: c_int)>;Expand description
charactersSAXFunc: @ctx: the user data (XML parser context) @ch: a xmlChar string @len: the number of xmlChar
Receiving some chars from the parser.
Aliased Type§
enum charactersSAXFunc {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8, _: i32)),
}