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
Sourcepub fn into_kind(self) -> ResolveErrorKind
pub fn into_kind(self) -> ResolveErrorKind
Take the kind of the error
Sourcepub fn proto(&self) -> Option<&ProtoError>
pub fn proto(&self) -> Option<&ProtoError>
If this is an underlying proto error, return that
Sourcepub fn is_nx_domain(&self) -> bool
pub fn is_nx_domain(&self) -> bool
Returns true if the domain does not exist
Sourcepub fn is_no_records_found(&self) -> bool
pub fn is_no_records_found(&self) -> bool
Returns true if no records were returned
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 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()
Source§impl From<&'static str> for ResolveError
impl From<&'static str> for ResolveError
Source§impl From<Error> for ResolveError
impl From<Error> for ResolveError
Source§impl<T> From<PoisonError<T>> for ResolveError
impl<T> From<PoisonError<T>> for ResolveError
Source§fn from(e: PoisonError<T>) -> Self
fn from(e: PoisonError<T>) -> Self
Converts to this type from the input type.
Source§impl From<ProtoError> for ResolveError
impl From<ProtoError> for ResolveError
Source§fn from(e: ProtoError) -> Self
fn from(e: ProtoError) -> Self
Converts to this type from the input type.
Source§impl From<ResolveError> for Error
impl From<ResolveError> for Error
Source§fn from(e: ResolveError) -> Self
fn from(e: 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) -> Self
fn from(kind: ResolveErrorKind) -> Self
Converts to this type from the input type.
Source§impl From<String> for ResolveError
impl From<String> for ResolveError
Source§impl RetryableError for ResolveError
impl RetryableError for ResolveError
Source§impl TryFrom<ResolveError> for ProtoErrorKind
impl TryFrom<ResolveError> for ProtoErrorKind
Source§type Error = ResolveError
type Error = ResolveError
The type returned in the event of a conversion error.
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§
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,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)