#[repr(C)]pub struct _xmlEntity {Show 20 fields
pub _private: *mut c_void,
pub type_: xmlElementType,
pub name: *const xmlChar,
pub children: *mut _xmlNode,
pub last: *mut _xmlNode,
pub parent: *mut _xmlDtd,
pub next: *mut _xmlNode,
pub prev: *mut _xmlNode,
pub doc: *mut _xmlDoc,
pub orig: *mut xmlChar,
pub content: *mut xmlChar,
pub length: c_int,
pub etype: xmlEntityType,
pub ExternalID: *const xmlChar,
pub SystemID: *const xmlChar,
pub nexte: *mut _xmlEntity,
pub URI: *const xmlChar,
pub owner: c_int,
pub flags: c_int,
pub expandedSize: c_ulong,
}Expand description
An entity declaration
Fields§
§_private: *mut c_voidapplication data
type_: xmlElementTypeXML_ENTITY_DECL, must be second !
name: *const xmlCharEntity name
children: *mut _xmlNodeFirst child link
last: *mut _xmlNodeLast child link
parent: *mut _xmlDtd-> DTD
next: *mut _xmlNodenext sibling link
prev: *mut _xmlNodeprevious sibling link
doc: *mut _xmlDocthe containing document
orig: *mut xmlCharcontent without ref substitution
content: *mut xmlCharcontent or ndata if unparsed
length: c_intthe content length
etype: xmlEntityTypeThe entity type
ExternalID: *const xmlCharExternal identifier for PUBLIC
SystemID: *const xmlCharURI for a SYSTEM or PUBLIC Entity
nexte: *mut _xmlEntityunused
URI: *const xmlCharthe full URI as computed
owner: c_intunused
flags: c_intvarious flags
expandedSize: c_ulongexpanded size
Trait Implementations§
Source§impl Clone for _xmlEntity
impl Clone for _xmlEntity
Source§fn clone(&self) -> _xmlEntity
fn clone(&self) -> _xmlEntity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _xmlEntity
Auto Trait Implementations§
impl !Send for _xmlEntity
impl !Sync for _xmlEntity
impl Freeze for _xmlEntity
impl RefUnwindSafe for _xmlEntity
impl Unpin for _xmlEntity
impl UnsafeUnpin for _xmlEntity
impl UnwindSafe for _xmlEntity
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