Enum xmpp_parsers::Error
source · pub enum Error {
XmlError(Error),
TextParseError(Box<dyn Error + Sync + Send>),
Other(&'static str),
TypeMismatch,
}
Expand description
Error variants generated while parsing or serialising XML data.
Variants§
XmlError(Error)
Invalid XML data encountered
TextParseError(Box<dyn Error + Sync + Send>)
Attempt to parse text data failed with the provided nested error.
Other(&'static 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.
Implementations§
source§impl Error
impl Error
sourcepub fn text_parse_error<T>(e: T) -> Error
pub fn text_parse_error<T>(e: T) -> Error
Convenience function to create a Self::TextParseError
variant.
This includes the Box::new(.)
call, making it directly usable as
argument to Result::map_err
.
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)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<&Error> for Error
impl From<&Error> for Error
“Clone” an Error
while discarding some information.
This discards the specific type information from the
TextParseError
variant and it may discard
more information in the future.
source§impl From<FromElementError> for Error
impl From<FromElementError> for Error
source§fn from(other: FromElementError) -> Error
fn from(other: FromElementError) -> Error
source§impl From<Infallible> for Error
impl From<Infallible> for Error
source§fn from(other: Infallible) -> Error
fn from(other: Infallible) -> Error
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
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
CompactString
. Read more