pub struct NewClientError(/* private fields */);Implementations§
Trait Implementations§
Source§impl Clone for NewClientError
impl Clone for NewClientError
Source§fn clone(&self) -> NewClientError
fn clone(&self) -> NewClientError
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 moreSource§impl Debug for NewClientError
impl Debug for NewClientError
Source§impl Display for NewClientError
impl Display for NewClientError
Source§impl Error for NewClientError
impl Error for NewClientError
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<InitStatusErrorKind> for NewClientError
impl From<InitStatusErrorKind> for NewClientError
Source§fn from(value: InitStatusErrorKind) -> NewClientError
fn from(value: InitStatusErrorKind) -> NewClientError
Constructs a NewClientError out of the provided NewClientErrorKind.
§Panics
Panics on the hidden NewClientErrorKind::UnstableUncategorized variant.
impl Copy for NewClientError
Auto Trait Implementations§
impl Freeze for NewClientError
impl RefUnwindSafe for NewClientError
impl Send for NewClientError
impl Sync for NewClientError
impl Unpin for NewClientError
impl UnsafeUnpin for NewClientError
impl UnwindSafe for NewClientError
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