Skip to main content

xmlOutputOpenCallback

Type Alias xmlOutputOpenCallback 

Source
pub type xmlOutputOpenCallback = Option<unsafe extern "C" fn(filename: *const c_char) -> *mut c_void>;
Expand description

Callback used in the I/O Output API to open the resource

@param filename the filename or URI @returns an Output context or NULL in case or error

Aliased Type§

pub enum xmlOutputOpenCallback {
    None,
    Some(unsafe extern "C" fn(*const i8) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*const i8) -> *mut c_void)

Some value of type T.