Struct async_std_resolver::ResolveError
source · [−]pub struct ResolveError { /* private fields */ }
Expand description
The error type for errors that get returned in the crate
Implementations
sourceimpl ResolveError
impl ResolveError
sourcepub fn kind(&self) -> &ResolveErrorKind
pub fn kind(&self) -> &ResolveErrorKind
Get the kind of the error
sourcepub fn from_response(
response: DnsResponse,
trust_nx: bool
) -> Result<DnsResponse, ResolveError>
pub fn from_response(
response: DnsResponse,
trust_nx: bool
) -> Result<DnsResponse, ResolveError>
A conversion to determine if the response is an error
Trait Implementations
sourceimpl Clone for ResolveError
impl Clone for ResolveError
sourcefn clone(&self) -> ResolveError
fn clone(&self) -> ResolveError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ResolveError
impl Debug for ResolveError
sourceimpl Display for ResolveError
impl Display for ResolveError
sourceimpl Error for ResolveError
impl Error for ResolveError
1.30.0 · sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl From<&'static str> for ResolveError
impl From<&'static str> for ResolveError
sourcefn from(msg: &'static str) -> ResolveError
fn from(msg: &'static str) -> ResolveError
Converts to this type from the input type.
sourceimpl From<Error> for ResolveError
impl From<Error> for ResolveError
sourcefn from(e: Error) -> ResolveError
fn from(e: Error) -> ResolveError
Converts to this type from the input type.
sourceimpl<T> From<PoisonError<T>> for ResolveError
impl<T> From<PoisonError<T>> for ResolveError
sourcefn from(e: PoisonError<T>) -> ResolveError
fn from(e: PoisonError<T>) -> ResolveError
Converts to this type from the input type.
sourceimpl From<ProtoError> for ResolveError
impl From<ProtoError> for ResolveError
sourcefn from(e: ProtoError) -> ResolveError
fn from(e: ProtoError) -> ResolveError
Converts to this type from the input type.
sourceimpl From<ResolveErrorKind> for ResolveError
impl From<ResolveErrorKind> for ResolveError
sourcefn from(kind: ResolveErrorKind) -> ResolveError
fn from(kind: ResolveErrorKind) -> ResolveError
Converts to this type from the input type.
sourceimpl From<String> for ResolveError
impl From<String> for ResolveError
sourcefn from(msg: String) -> ResolveError
fn from(msg: String) -> ResolveError
Converts to this type from the input type.
sourceimpl RetryableError for ResolveError
impl RetryableError for ResolveError
Auto Trait Implementations
impl !RefUnwindSafe for ResolveError
impl Send for ResolveError
impl Sync for ResolveError
impl Unpin for ResolveError
impl !UnwindSafe for ResolveError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more