Type Alias xlinkSimpleLinkFunk

Source
pub type xlinkSimpleLinkFunk = Option<unsafe extern "C" fn(ctx: *mut c_void, node: xmlNodePtr, href: xlinkHRef, role: xlinkRole, title: xlinkTitle)>;
Expand description

xlinkSimpleLinkFunk: @ctx: user data pointer @node: the node carrying the link @href: the target of the link @role: the role string @title: the link title

This is the prototype for a simple link detection callback.

Aliased Type§

enum xlinkSimpleLinkFunk {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *mut _xmlNode, _: *mut u8, _: *mut u8, _: *mut u8)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.