Type Alias xmlRegExecCallbacks

Source
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§

enum xmlRegExecCallbacks {
    None,
    Some(unsafe extern "C" fn(_: *mut _xmlRegExecCtxt, _: *const u8, _: *mut c_void, _: *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut _xmlRegExecCtxt, _: *const u8, _: *mut c_void, _: *mut c_void))

Some value of type T.