pub enum ZBError {
ExplicitError(String),
JsonError(Error),
IntParseError(ParseIntError),
RequestError(Error),
IOError(Error),
}Variants§
ExplicitError(String)
JsonError(Error)
IntParseError(ParseIntError)
RequestError(Error)
IOError(Error)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZBError
impl !RefUnwindSafe for ZBError
impl Send for ZBError
impl Sync for ZBError
impl Unpin for ZBError
impl !UnwindSafe for ZBError
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