Enum xso::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
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