#[repr(C)]pub struct _xmlDtd {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 _xmlDoc,
pub next: *mut _xmlNode,
pub prev: *mut _xmlNode,
pub doc: *mut _xmlDoc,
pub notations: *mut c_void,
pub elements: *mut c_void,
pub attributes: *mut c_void,
pub entities: *mut c_void,
pub ExternalID: *mut xmlChar,
pub SystemID: *mut xmlChar,
pub pentities: *mut c_void,
}Expand description
An XML DTD, as defined by <!DOCTYPE … There is actually one for the internal subset and for the external subset.
Should be treated as opaque. Accessing members directly is deprecated.
Fields§
§_private: *mut c_voidapplication data
type_: xmlElementTypeXML_DTD_NODE
name: *const xmlCharname of the DTD
children: *mut _xmlNodefirst child
last: *mut _xmlNodelast child
parent: *mut _xmlDocparent node
next: *mut _xmlNodenext sibling
prev: *mut _xmlNodeprevious sibling
doc: *mut _xmlDoccontaining document
notations: *mut c_voidhash table for notations if any
elements: *mut c_voidhash table for elements if any
attributes: *mut c_voidhash table for attributes if any
entities: *mut c_voidhash table for entities if any
ExternalID: *mut xmlCharpublic identifier
SystemID: *mut xmlCharsystem identifier
pentities: *mut c_voidhash table for parameter entities if any
Trait Implementations§
Auto Trait Implementations§
impl !Send for _xmlDtd
impl !Sync for _xmlDtd
impl Freeze for _xmlDtd
impl RefUnwindSafe for _xmlDtd
impl Unpin for _xmlDtd
impl UnsafeUnpin for _xmlDtd
impl UnwindSafe for _xmlDtd
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