Type Alias xmlSAXLocator

Source
pub type xmlSAXLocator = _xmlSAXLocator;
Expand description

xmlSAXLocator:

A SAX Locator.

Aliased Type§

struct xmlSAXLocator {
    pub getPublicId: Option<unsafe extern "C" fn(_: *mut c_void) -> *const u8>,
    pub getSystemId: Option<unsafe extern "C" fn(_: *mut c_void) -> *const u8>,
    pub getLineNumber: Option<unsafe extern "C" fn(_: *mut c_void) -> i32>,
    pub getColumnNumber: Option<unsafe extern "C" fn(_: *mut c_void) -> i32>,
}

Fields§

§getPublicId: Option<unsafe extern "C" fn(_: *mut c_void) -> *const u8>§getSystemId: Option<unsafe extern "C" fn(_: *mut c_void) -> *const u8>§getLineNumber: Option<unsafe extern "C" fn(_: *mut c_void) -> i32>§getColumnNumber: Option<unsafe extern "C" fn(_: *mut c_void) -> i32>