pub enum XmlErrorLevel {
XmlErrNone = 0,
XmlErrWarning = 1,
XmlErrError = 2,
XmlErrFatal = 3,
}Variants§
Trait Implementations§
Source§impl Clone for XmlErrorLevel
impl Clone for XmlErrorLevel
Source§fn clone(&self) -> XmlErrorLevel
fn clone(&self) -> XmlErrorLevel
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 XmlErrorLevel
impl Debug for XmlErrorLevel
Source§impl Default for XmlErrorLevel
impl Default for XmlErrorLevel
Source§fn default() -> XmlErrorLevel
fn default() -> XmlErrorLevel
Returns the “default value” for a type. Read more
Source§impl PartialEq for XmlErrorLevel
impl PartialEq for XmlErrorLevel
impl Copy for XmlErrorLevel
impl Eq for XmlErrorLevel
impl StructuralPartialEq for XmlErrorLevel
Auto Trait Implementations§
impl Freeze for XmlErrorLevel
impl RefUnwindSafe for XmlErrorLevel
impl Send for XmlErrorLevel
impl Sync for XmlErrorLevel
impl Unpin for XmlErrorLevel
impl UnwindSafe for XmlErrorLevel
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