pub struct ErrorList<E> { /* private fields */ }
Expand description
The main type that holds a list of errors.
See the module-level docs and the docs for WriteErrorList.
Implementations§
Trait Implementations§
Source§impl<E: Error> Error for ErrorList<E>
impl<E: Error> Error for ErrorList<E>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<E> IntoIterator for ErrorList<E>
impl<E> IntoIterator for ErrorList<E>
Source§impl<E> WriteErrorList<E> for ErrorList<E>
impl<E> WriteErrorList<E> for ErrorList<E>
Source§fn subwriter<'sub, SubMapFn, SubErr: 'sub>(
&'sub mut self,
map_fn: SubMapFn,
) -> impl WriteErrorList<SubErr> + 'sub
fn subwriter<'sub, SubMapFn, SubErr: 'sub>( &'sub mut self, map_fn: SubMapFn, ) -> impl WriteErrorList<SubErr> + 'sub
Create a new mapping error writer with this as its parent Read more
impl<E: Eq> Eq for ErrorList<E>
impl<E> StructuralPartialEq for ErrorList<E>
Auto Trait Implementations§
impl<E> Freeze for ErrorList<E>
impl<E> RefUnwindSafe for ErrorList<E>where
E: RefUnwindSafe,
impl<E> Send for ErrorList<E>where
E: Send,
impl<E> Sync for ErrorList<E>where
E: Sync,
impl<E> Unpin for ErrorList<E>where
E: Unpin,
impl<E> UnwindSafe for ErrorList<E>where
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