pub type xmlListWalker = Option<unsafe extern "C" fn(data: *const c_void, user: *mut c_void) -> c_int>;Expand description
xmlListWalker: @data: the data found in the list @user: extra user provided data to the walker
Callback function used when walking a list with xmlListWalk().
Returns 0 to stop walking the list, 1 otherwise.
Aliased Type§
enum xmlListWalker {
None,
Some(unsafe extern "C" fn(_: *const c_void, _: *mut c_void) -> i32),
}