pub type xmlRegExecCallbacks = Option<unsafe extern "C" fn(exec: xmlRegExecCtxtPtr, token: *const xmlChar, transdata: *mut c_void, inputdata: *mut c_void)>;Expand description
xmlRegExecCallbacks: @exec: the regular expression context @token: the current token string @transdata: transition data @inputdata: input data
Callback function when doing a transition in the automata
Aliased Type§
pub enum xmlRegExecCallbacks {
None,
Some(unsafe extern "C" fn(*mut _xmlRegExecCtxt, *const u8, *mut c_void, *mut c_void)),
}