#[repr(C)]pub enum xmlParserMode {
XML_PARSE_UNKNOWN = 0,
XML_PARSE_DOM = 1,
XML_PARSE_SAX = 2,
XML_PARSE_PUSH_DOM = 3,
XML_PARSE_PUSH_SAX = 4,
XML_PARSE_READER = 5,
}Variants§
XML_PARSE_UNKNOWN = 0
XML_PARSE_DOM = 1
XML_PARSE_SAX = 2
XML_PARSE_PUSH_DOM = 3
XML_PARSE_PUSH_SAX = 4
XML_PARSE_READER = 5
Trait Implementations§
Source§impl Clone for xmlParserMode
impl Clone for xmlParserMode
Source§fn clone(&self) -> xmlParserMode
fn clone(&self) -> xmlParserMode
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 xmlParserMode
Source§impl Debug for xmlParserMode
impl Debug for xmlParserMode
impl Eq for xmlParserMode
Source§impl PartialEq for xmlParserMode
impl PartialEq for xmlParserMode
impl StructuralPartialEq for xmlParserMode
Auto Trait Implementations§
impl Freeze for xmlParserMode
impl RefUnwindSafe for xmlParserMode
impl Send for xmlParserMode
impl Sync for xmlParserMode
impl Unpin for xmlParserMode
impl UnsafeUnpin for xmlParserMode
impl UnwindSafe for xmlParserMode
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