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