Enum xmpp_parsers::FromElementError
pub enum FromElementError {
Mismatch(Element),
Invalid(Error),
}
Expand description
Error returned by the TryFrom<Element>
implementations.
Variants§
Mismatch(Element)
The XML element header did not match the expectations of the type
implementing TryFrom
.
Contains the original Element
unmodified.
Invalid(Error)
During processing of the element, an (unrecoverable) error occured.
Trait Implementations§
§impl Debug for FromElementError
impl Debug for FromElementError
§impl Display for FromElementError
impl Display for FromElementError
§impl Error for FromElementError
impl Error for FromElementError
§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()
§impl From<Error> for FromElementError
impl From<Error> for FromElementError
§fn from(other: Error) -> FromElementError
fn from(other: Error) -> FromElementError
Converts to this type from the input type.
§impl From<FromElementError> for Error
impl From<FromElementError> for Error
§fn from(other: FromElementError) -> Error
fn from(other: FromElementError) -> Error
Converts to this type from the input type.
§impl From<Infallible> for FromElementError
impl From<Infallible> for FromElementError
§fn from(other: Infallible) -> FromElementError
fn from(other: Infallible) -> FromElementError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FromElementError
impl !RefUnwindSafe for FromElementError
impl Send for FromElementError
impl Sync for FromElementError
impl Unpin for FromElementError
impl !UnwindSafe for FromElementError
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