Struct actix_net::resolver::ResolveError
source · pub struct ResolveError { /* private fields */ }
Expand description
The error type for errors that get returned in the crate
Implementations§
source§impl ResolveError
impl ResolveError
sourcepub fn kind(&self) -> &ResolveErrorKind
pub fn kind(&self) -> &ResolveErrorKind
Get the kind of the error
Trait Implementations§
source§impl Clone for ResolveError
impl Clone for ResolveError
source§fn clone(&self) -> ResolveError
fn clone(&self) -> ResolveError
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 ResolveError
impl Debug for ResolveError
source§impl Display for ResolveError
impl Display for ResolveError
source§impl Fail for ResolveError
impl Fail for ResolveError
source§fn cause(&self) -> Option<&(dyn Fail + 'static)>
fn cause(&self) -> Option<&(dyn Fail + 'static)>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read moresource§impl From<&'static str> for ResolveError
impl From<&'static str> for ResolveError
source§fn from(msg: &'static str) -> ResolveError
fn from(msg: &'static str) -> ResolveError
Converts to this type from the input type.
source§impl From<Context<ResolveErrorKind>> for ResolveError
impl From<Context<ResolveErrorKind>> for ResolveError
source§fn from(inner: Context<ResolveErrorKind>) -> ResolveError
fn from(inner: Context<ResolveErrorKind>) -> ResolveError
Converts to this type from the input type.
source§impl From<Error> for ResolveError
impl From<Error> for ResolveError
source§fn from(e: Error) -> ResolveError
fn from(e: Error) -> ResolveError
Converts to this type from the input type.
source§impl From<ProtoError> for ResolveError
impl From<ProtoError> for ResolveError
source§fn from(e: ProtoError) -> ResolveError
fn from(e: ProtoError) -> ResolveError
Converts to this type from the input type.
source§impl From<ResolveError> for ConnectorError
impl From<ResolveError> for ConnectorError
source§fn from(err: ResolveError) -> Self
fn from(err: ResolveError) -> Self
Converts to this type from the input type.
source§impl From<ResolveErrorKind> for ResolveError
impl From<ResolveErrorKind> for ResolveError
source§fn from(kind: ResolveErrorKind) -> ResolveError
fn from(kind: ResolveErrorKind) -> ResolveError
Converts to this type from the input type.
source§impl From<String> for ResolveError
impl From<String> for ResolveError
source§fn from(msg: String) -> ResolveError
fn from(msg: String) -> ResolveError
Converts to this type from the input type.