pub struct ConnectionErrorDetails {
pub code: String,
pub message: String,
pub is_ssl_error: bool,
}Expand description
Connection error details
Fields§
§code: String§message: String§is_ssl_error: boolTrait Implementations§
Source§impl Clone for ConnectionErrorDetails
impl Clone for ConnectionErrorDetails
Source§fn clone(&self) -> ConnectionErrorDetails
fn clone(&self) -> ConnectionErrorDetails
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ConnectionErrorDetails
impl RefUnwindSafe for ConnectionErrorDetails
impl Send for ConnectionErrorDetails
impl Sync for ConnectionErrorDetails
impl Unpin for ConnectionErrorDetails
impl UnsafeUnpin for ConnectionErrorDetails
impl UnwindSafe for ConnectionErrorDetails
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