Enum xso::error::FromEventsError
source · pub enum FromEventsError {
Mismatch {
name: QName,
attrs: AttrMap,
},
Invalid(Error),
}
Expand description
Error returned from
FromXml::from_events
.
Variants§
Mismatch
The name
and/or attrs
passed to FromXml::from_events
did not
match the element’s type.
Invalid(Error)
The name
and attrs
passed to FromXml::from_events
matched the
element’s type, but the data was invalid. Details are in the inner
error.
Trait Implementations§
source§impl Debug for FromEventsError
impl Debug for FromEventsError
source§impl Display for FromEventsError
impl Display for FromEventsError
source§impl Error for FromEventsError
impl Error for FromEventsError
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 FromEventsError
impl From<Infallible> for FromEventsError
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 FromEventsError
impl !RefUnwindSafe for FromEventsError
impl Send for FromEventsError
impl Sync for FromEventsError
impl Unpin for FromEventsError
impl !UnwindSafe for FromEventsError
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