pub enum ErrKind {
TimeOut(String, i32),
Closed,
Validate(String),
Err(Box<dyn Error + Send + Sync>),
}
Variants§
Auto Trait Implementations§
impl Freeze for ErrKind
impl !RefUnwindSafe for ErrKind
impl Send for ErrKind
impl Sync for ErrKind
impl Unpin for ErrKind
impl !UnwindSafe for ErrKind
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