pub struct ErrorChain<I> {
pub source: I,
pub context: Vec<Cow<'static, str>>,
}Fields§
§source: I§context: Vec<Cow<'static, str>>Implementations§
Trait Implementations§
Source§impl<I: Debug> Debug for ErrorChain<I>
impl<I: Debug> Debug for ErrorChain<I>
Auto Trait Implementations§
impl<I> Freeze for ErrorChain<I>where
I: Freeze,
impl<I> RefUnwindSafe for ErrorChain<I>where
I: RefUnwindSafe,
impl<I> Send for ErrorChain<I>where
I: Send,
impl<I> Sync for ErrorChain<I>where
I: Sync,
impl<I> Unpin for ErrorChain<I>where
I: Unpin,
impl<I> UnwindSafe for ErrorChain<I>where
I: 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