pub enum ZapperError {
Backend(Box<dyn Error + Send + Sync>),
NotSupported,
}
Expand description
Zapper Error
Variants§
Backend(Box<dyn Error + Send + Sync>)
An error happened in the underlying zapper backend.
NotSupported
Not supported
Implementations§
Trait Implementations§
Source§impl Debug for ZapperError
impl Debug for ZapperError
Source§impl Display for ZapperError
impl Display for ZapperError
Source§impl Error for ZapperError
impl Error for ZapperError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for ZapperError
impl !RefUnwindSafe for ZapperError
impl Send for ZapperError
impl Sync for ZapperError
impl Unpin for ZapperError
impl !UnwindSafe for ZapperError
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