Type Alias xmlAttr

Source
pub type xmlAttr = _xmlAttr;
Expand description

xmlAttr:

An attribute on an XML node.

Aliased Type§

struct xmlAttr {
    pub _private: *mut c_void,
    pub type_: u32,
    pub name: *const u8,
    pub children: *mut _xmlNode,
    pub last: *mut _xmlNode,
    pub parent: *mut _xmlNode,
    pub next: *mut _xmlAttr,
    pub prev: *mut _xmlAttr,
    pub doc: *mut _xmlDoc,
    pub ns: *mut _xmlNs,
    pub atype: u32,
    pub psvi: *mut c_void,
}

Fields§

§_private: *mut c_void§type_: u32§name: *const u8§children: *mut _xmlNode§last: *mut _xmlNode§parent: *mut _xmlNode§next: *mut _xmlAttr§prev: *mut _xmlAttr§doc: *mut _xmlDoc§ns: *mut _xmlNs§atype: u32§psvi: *mut c_void