Struct netstack3_core::error::ExistsError
source · pub struct ExistsError;
Expand description
Error when something exists unexpectedly.
Trait Implementations§
source§impl Debug for ExistsError
impl Debug for ExistsError
source§impl Display for ExistsError
impl Display for ExistsError
source§impl Error for ExistsError
impl Error for ExistsError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<ExistsError> for AddRouteError
impl From<ExistsError> for AddRouteError
source§fn from(crate::error::ExistsError: ExistsError) -> AddRouteError
fn from(crate::error::ExistsError: ExistsError) -> AddRouteError
Converts to this type from the input type.
source§impl From<ExistsError> for NetstackError
impl From<ExistsError> for NetstackError
source§fn from(_: ExistsError) -> NetstackError
fn from(_: ExistsError) -> NetstackError
Converts to this type from the input type.
source§impl From<ExistsError> for SocketError
impl From<ExistsError> for SocketError
source§fn from(_: ExistsError) -> SocketError
fn from(_: ExistsError) -> SocketError
Converts to this type from the input type.
source§impl PartialEq for ExistsError
impl PartialEq for ExistsError
source§fn eq(&self, other: &ExistsError) -> bool
fn eq(&self, other: &ExistsError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ExistsError
impl StructuralEq for ExistsError
impl StructuralPartialEq for ExistsError
Auto Trait Implementations§
impl RefUnwindSafe for ExistsError
impl Send for ExistsError
impl Sync for ExistsError
impl Unpin for ExistsError
impl UnwindSafe for ExistsError
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