Type Alias xmlNs

Source
pub type xmlNs = _xmlNs;
Expand description

xmlNs:

An XML namespace. Note that prefix == NULL is valid, it defines the default namespace within the subtree (until overridden).

xmlNsType is unified with xmlElementType.

Aliased Type§

struct xmlNs {
    pub next: *mut _xmlNs,
    pub type_: u32,
    pub href: *const u8,
    pub prefix: *const u8,
    pub _private: *mut c_void,
    pub context: *mut _xmlDoc,
}

Fields§

§next: *mut _xmlNs§type_: u32§href: *const u8§prefix: *const u8§_private: *mut c_void§context: *mut _xmlDoc