Skip to main content

charactersSAXFunc

Type Alias charactersSAXFunc 

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

SAX callback for character data.

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

Aliased Type§

pub enum charactersSAXFunc {
    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.