Type Alias xlinkNodeDetectFunc

Source
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)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *mut _xmlNode))

Some value of type T.