pub type xlinkNodeDetectFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, node: xmlNodePtr)>;Expand description
xlinkNodeDetectFunc: @ctx: user data pointer @node: the node to check
This is the prototype for the link detection routine. It calls the default link detection callbacks upon link detection.
Aliased Type§
enum xlinkNodeDetectFunc {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: *mut _xmlNode)),
}