pub enum Error {
XmlError(XmlError),
TextParseError(Box<dyn Error + Send + Sync + 'static>),
Other(Box<str>),
TypeMismatch,
}
Expand description
Error variants generated while parsing or serialising XML data.
Variants§
XmlError(XmlError)
Invalid XML data encountered
TextParseError(Box<dyn Error + Send + Sync + 'static>)
Attempt to parse text data failed with the provided nested error.
Other(Box<str>)
Generic, unspecified other error.
TypeMismatch
An element header did not match an expected element.
This is only rarely generated: most of the time, a mismatch of element types is reported as either an unexpected or a missing child element, errors which are generally more specific.
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for FromEventsError
impl From<Error> for FromEventsError
source§impl From<Infallible> for Error
impl From<Infallible> for Error
source§fn from(other: Infallible) -> Self
fn from(other: Infallible) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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
source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more