#[repr(C)]pub struct _xmlAttribute {Show 16 fields
pub _private: *mut c_void,
pub type_: c_int,
pub name: *const xmlChar,
pub children: *mut _xmlNode,
pub last: *mut _xmlNode,
pub parent: *mut _xmlDtd,
pub next: *mut _xmlNode,
pub prev: *mut _xmlNode,
pub doc: *mut _xmlDoc,
pub nexth: *mut _xmlAttribute,
pub atype: c_int,
pub def: c_int,
pub defaultValue: *mut xmlChar,
pub tree: *mut _xmlEnumeration,
pub prefix: *const xmlChar,
pub elem: *const xmlChar,
}Expand description
Attribute declaration from DTD.
Fields§
§_private: *mut c_void§type_: c_int§name: *const xmlChar§children: *mut _xmlNode§last: *mut _xmlNode§parent: *mut _xmlDtd§next: *mut _xmlNode§prev: *mut _xmlNode§doc: *mut _xmlDoc§nexth: *mut _xmlAttribute§atype: c_int§def: c_int§defaultValue: *mut xmlChar§tree: *mut _xmlEnumeration§prefix: *const xmlChar§elem: *const xmlCharAuto Trait Implementations§
impl !Send for _xmlAttribute
impl !Sync for _xmlAttribute
impl Freeze for _xmlAttribute
impl RefUnwindSafe for _xmlAttribute
impl Unpin for _xmlAttribute
impl UnsafeUnpin for _xmlAttribute
impl UnwindSafe for _xmlAttribute
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more