pub type xmlDtd = _xmlDtd;Expand description
Document type definition (DTD)
Aliased Type§
#[repr(C)]pub struct xmlDtd {Show 16 fields
pub _private: *mut c_void,
pub type_: u32,
pub name: *const u8,
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 u8,
pub SystemID: *mut u8,
pub pentities: *mut c_void,
}Fields§
§_private: *mut c_voidapplication data
type_: u32XML_DTD_NODE
name: *const u8name 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 u8public identifier
SystemID: *mut u8system identifier
pentities: *mut c_voidhash table for parameter entities if any