#[repr(C)]pub struct _xmlAttr {
pub _private: *mut c_void,
pub type_: xmlElementType,
pub name: *const xmlChar,
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: xmlAttributeType,
pub psvi: *mut c_void,
}Fields§
§_private: *mut c_void§type_: xmlElementType§name: *const xmlChar§children: *mut _xmlNode§last: *mut _xmlNode§parent: *mut _xmlNode§next: *mut _xmlAttr§prev: *mut _xmlAttr§doc: *mut _xmlDoc§ns: *mut xmlNs§atype: xmlAttributeType§psvi: *mut c_voidTrait Implementations§
Auto Trait Implementations§
impl Freeze for _xmlAttr
impl RefUnwindSafe for _xmlAttr
impl !Send for _xmlAttr
impl !Sync for _xmlAttr
impl Unpin for _xmlAttr
impl UnwindSafe for _xmlAttr
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