pub enum DriverError {
Retry(u8, &'static str),
Permanent(u8, &'static str),
}
Expand description
Types of errors that can be returned from a Driver
.
Variants§
Retry(u8, &'static str)
An error that may be retried.
Permanent(u8, &'static str)
A permanent error.
Trait Implementations§
Source§impl Clone for DriverError
impl Clone for DriverError
Source§fn clone(&self) -> DriverError
fn clone(&self) -> DriverError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DriverError
impl Debug for DriverError
impl Copy for DriverError
Auto Trait Implementations§
impl Freeze for DriverError
impl RefUnwindSafe for DriverError
impl Send for DriverError
impl Sync for DriverError
impl Unpin for DriverError
impl UnwindSafe for DriverError
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