pub struct CumulativeError<T> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<T: Debug> Debug for CumulativeError<T>
impl<T: Debug> Debug for CumulativeError<T>
Source§impl<T> Display for CumulativeError<T>where
T: Display,
impl<T> Display for CumulativeError<T>where
T: Display,
Source§impl<T> Fail for CumulativeError<T>
impl<T> Fail for CumulativeError<T>
Source§fn cause(&self) -> Option<&(dyn Fail + 'static)>
fn cause(&self) -> Option<&(dyn Fail + 'static)>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moreAuto Trait Implementations§
impl<T> Freeze for CumulativeError<T>
impl<T> RefUnwindSafe for CumulativeError<T>where
T: RefUnwindSafe,
impl<T> Send for CumulativeError<T>where
T: Send,
impl<T> Sync for CumulativeError<T>where
T: Sync,
impl<T> Unpin for CumulativeError<T>where
T: Unpin,
impl<T> UnwindSafe for CumulativeError<T>where
T: 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