Struct ResolveError
pub struct ResolveError { /* private fields */ }
Available on crate feature
dns
only.Expand description
The error type for errors that get returned in the crate
Implementations§
§impl ResolveError
impl ResolveError
pub fn kind(&self) -> &ResolveErrorKind
pub fn kind(&self) -> &ResolveErrorKind
Get the kind of the error
pub fn into_kind(self) -> ResolveErrorKind
pub fn into_kind(self) -> ResolveErrorKind
Take the kind of the error
pub fn is_nx_domain(&self) -> bool
pub fn is_nx_domain(&self) -> bool
Returns true if the domain does not exist
pub fn is_no_records_found(&self) -> bool
pub fn is_no_records_found(&self) -> bool
Returns true if no records were returned
Trait Implementations§
§impl Clone for ResolveError
impl Clone for ResolveError
§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 more§impl Debug for ResolveError
impl Debug for ResolveError
§impl Display for ResolveError
impl Display for ResolveError
§impl Error for ResolveError
impl Error for ResolveError
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()
§impl From<&'static str> for ResolveError
impl From<&'static str> for ResolveError
§fn from(msg: &'static str) -> ResolveError
fn from(msg: &'static str) -> ResolveError
Converts to this type from the input type.
§impl From<Error> for ResolveError
impl From<Error> for ResolveError
§fn from(e: Error) -> ResolveError
fn from(e: Error) -> ResolveError
Converts to this type from the input type.
§impl<T> From<PoisonError<T>> for ResolveError
impl<T> From<PoisonError<T>> for ResolveError
§fn from(e: PoisonError<T>) -> ResolveError
fn from(e: PoisonError<T>) -> ResolveError
Converts to this type from the input type.
§impl From<ProtoError> for ResolveError
impl From<ProtoError> for ResolveError
§fn from(e: ProtoError) -> ResolveError
fn from(e: ProtoError) -> ResolveError
Converts to this type from the input type.
§impl From<ResolveErrorKind> for ResolveError
impl From<ResolveErrorKind> for ResolveError
§fn from(kind: ResolveErrorKind) -> ResolveError
fn from(kind: ResolveErrorKind) -> ResolveError
Converts to this type from the input type.
§impl From<String> for ResolveError
impl From<String> for ResolveError
§fn from(msg: String) -> ResolveError
fn from(msg: String) -> ResolveError
Converts to this type from the input type.
§impl RetryableError for ResolveError
impl RetryableError for ResolveError
Auto Trait Implementations§
impl Freeze for ResolveError
impl !RefUnwindSafe for ResolveError
impl Send for ResolveError
impl Sync for ResolveError
impl Unpin for ResolveError
impl !UnwindSafe for ResolveError
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more