pub struct FallibleBuilder<T: FromEventsBuilder, E>(/* private fields */);
Expand description
Build a Result<T, E>
from XML.
This builder, invoked generally via the FromXml
implementation on
Result<T, E> where T: FromXml, E: From<Error>
, allows to fallably parse
an XSO from XML.
If an error occurs while parsing the XSO, the remaining events which
belong to that XSO are discarded. Once all events have been seen, the
error is returned as Err(.)
value.
If parsing succeeds, the parsed XSO is returned as Ok(.)
value.
Trait Implementations§
source§impl<T: Debug + FromEventsBuilder, E: Debug> Debug for FallibleBuilder<T, E>
impl<T: Debug + FromEventsBuilder, E: Debug> Debug for FallibleBuilder<T, E>
source§impl<T: FromEventsBuilder, E: From<Error>> FromEventsBuilder for FallibleBuilder<T, E>
impl<T: FromEventsBuilder, E: From<Error>> FromEventsBuilder for FallibleBuilder<T, E>
Auto Trait Implementations§
impl<T, E> Freeze for FallibleBuilder<T, E>
impl<T, E> RefUnwindSafe for FallibleBuilder<T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<T, E> Send for FallibleBuilder<T, E>
impl<T, E> Sync for FallibleBuilder<T, E>
impl<T, E> Unpin for FallibleBuilder<T, E>
impl<T, E> UnwindSafe for FallibleBuilder<T, E>where
T: UnwindSafe,
E: UnwindSafe,
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