#[repr(C)]pub struct _xmlElement {
pub name: *const xmlChar,
pub type_: c_int,
pub content: *mut _xmlElementContent,
pub attributes: *mut _xmlAttribute,
pub prefix: *const xmlChar,
pub next: *mut _xmlElement,
pub _private: c_int,
}Expand description
Element declaration from DTD.
Fields§
§name: *const xmlChar§type_: c_int§content: *mut _xmlElementContent§attributes: *mut _xmlAttribute§prefix: *const xmlChar§next: *mut _xmlElement§_private: c_intAuto Trait Implementations§
impl !Send for _xmlElement
impl !Sync for _xmlElement
impl Freeze for _xmlElement
impl RefUnwindSafe for _xmlElement
impl Unpin for _xmlElement
impl UnsafeUnpin for _xmlElement
impl UnwindSafe for _xmlElement
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