#[repr(C)]pub enum XmlReaderTypes {
Show 18 variants
XmlReaderTypeNone = 0,
XmlReaderTypeElement = 1,
XmlReaderTypeAttribute = 2,
XmlReaderTypeText = 3,
XmlReaderTypeCDATA = 4,
XmlReaderTypeEntityReference = 5,
XmlReaderTypeEntity = 6,
XmlReaderTypeProcessingInstruction = 7,
XmlReaderTypeComment = 8,
XmlReaderTypeDocument = 9,
XmlReaderTypeDocumentType = 10,
XmlReaderTypeDocumentFragment = 11,
XmlReaderTypeNotation = 12,
XmlReaderTypeWhitespace = 13,
XmlReaderTypeSignificantWhitespace = 14,
XmlReaderTypeEndElement = 15,
XmlReaderTypeEndEntity = 16,
XmlReaderTypeXmlDeclaration = 17,
}Expand description
Predefined constants for the different types of nodes.
Variants§
XmlReaderTypeNone = 0
XmlReaderTypeElement = 1
XmlReaderTypeAttribute = 2
XmlReaderTypeText = 3
XmlReaderTypeCDATA = 4
XmlReaderTypeEntityReference = 5
XmlReaderTypeEntity = 6
XmlReaderTypeProcessingInstruction = 7
XmlReaderTypeComment = 8
XmlReaderTypeDocument = 9
XmlReaderTypeDocumentType = 10
XmlReaderTypeDocumentFragment = 11
XmlReaderTypeNotation = 12
XmlReaderTypeWhitespace = 13
XmlReaderTypeSignificantWhitespace = 14
XmlReaderTypeEndElement = 15
XmlReaderTypeEndEntity = 16
XmlReaderTypeXmlDeclaration = 17
Trait Implementations§
Source§impl Clone for XmlReaderTypes
impl Clone for XmlReaderTypes
Source§fn clone(&self) -> XmlReaderTypes
fn clone(&self) -> XmlReaderTypes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for XmlReaderTypes
impl Debug for XmlReaderTypes
Source§impl PartialEq for XmlReaderTypes
impl PartialEq for XmlReaderTypes
impl Copy for XmlReaderTypes
impl Eq for XmlReaderTypes
impl StructuralPartialEq for XmlReaderTypes
Auto Trait Implementations§
impl Freeze for XmlReaderTypes
impl RefUnwindSafe for XmlReaderTypes
impl Send for XmlReaderTypes
impl Sync for XmlReaderTypes
impl Unpin for XmlReaderTypes
impl UnwindSafe for XmlReaderTypes
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