pub struct DriverDownReceiving;
Expand description
error indicate Client’s Driver is dropped and can’t be accessed anymore when receiving response from server.
all mid flight response and unfinished response data are lost and can’t be recovered. database query related to this error may or may not executed successfully and it should not be retried blindly.
Trait Implementations§
Source§impl Debug for DriverDownReceiving
impl Debug for DriverDownReceiving
Source§impl Display for DriverDownReceiving
impl Display for DriverDownReceiving
Source§impl Error for DriverDownReceiving
impl Error for DriverDownReceiving
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()
Source§impl From<DriverDownReceiving> for Error
impl From<DriverDownReceiving> for Error
Source§fn from(e: DriverDownReceiving) -> Self
fn from(e: DriverDownReceiving) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DriverDownReceiving
impl RefUnwindSafe for DriverDownReceiving
impl Send for DriverDownReceiving
impl Sync for DriverDownReceiving
impl Unpin for DriverDownReceiving
impl UnwindSafe for DriverDownReceiving
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