pub enum XmlError {
Read {
error: Error,
},
IllegalSequence {
sequence: CompactString,
},
UnexpectedEof,
}
Variants§
Trait Implementations§
impl Eq for XmlError
impl StructuralPartialEq for XmlError
Auto Trait Implementations§
impl Freeze for XmlError
impl RefUnwindSafe for XmlError
impl Send for XmlError
impl Sync for XmlError
impl Unpin for XmlError
impl UnwindSafe for XmlError
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