Type Alias xmlXPathEvalFunc

Source
pub type xmlXPathEvalFunc = Option<unsafe extern "C" fn(ctxt: xmlXPathParserContextPtr, nargs: c_int)>;
Expand description

xmlXPathEvalFunc: @ctxt: an XPath parser context @nargs: the number of arguments passed to the function

An XPath evaluation function, the parameters are on the XPath context stack.

Aliased Type§

enum xmlXPathEvalFunc {
    None,
    Some(unsafe extern "C" fn(_: *mut _xmlXPathParserContext, _: i32)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut _xmlXPathParserContext, _: i32))

Some value of type T.