pub enum ErrorKind<E, B> {
Std {
source: E,
backtrace: B,
},
Err2 {
source: E,
},
}Variants§
Auto Trait Implementations§
impl<E, B> Freeze for ErrorKind<E, B>
impl<E, B> RefUnwindSafe for ErrorKind<E, B>where
E: RefUnwindSafe,
B: RefUnwindSafe,
impl<E, B> Send for ErrorKind<E, B>
impl<E, B> Sync for ErrorKind<E, B>
impl<E, B> Unpin for ErrorKind<E, B>
impl<E, B> UnwindSafe for ErrorKind<E, B>where
E: UnwindSafe,
B: 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