Skip to main content

getParameterEntitySAXFunc

Type Alias getParameterEntitySAXFunc 

Source
pub type getParameterEntitySAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar) -> *mut xmlEntity>;
Expand description

SAX callback to look up a parameter entity by name.

@param ctx the user data (XML parser context) @param name The entity name @returns the xmlEntity if found.

Aliased Type§

pub enum getParameterEntitySAXFunc {
    None,
    Some(unsafe extern "C" fn(*mut c_void, *const u8) -> *mut _xmlEntity),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut c_void, *const u8) -> *mut _xmlEntity)

Some value of type T.