Struct hickory_proto::error::ProtoError
source · #[non_exhaustive]pub struct ProtoError {
pub kind: Box<ProtoErrorKind>,
}
Expand description
The error type for errors that get returned in the crate
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.kind: Box<ProtoErrorKind>
Kind of error that ocurred
Implementations§
source§impl ProtoError
impl ProtoError
Trait Implementations§
source§impl Clone for ProtoError
impl Clone for ProtoError
source§fn clone(&self) -> ProtoError
fn clone(&self) -> ProtoError
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 ProtoError
impl Debug for ProtoError
source§impl Display for ProtoError
impl Display for ProtoError
source§impl Error for ProtoError
impl Error for ProtoError
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<&'static str> for ProtoError
impl From<&'static str> for ProtoError
source§impl From<DecodeError> for ProtoError
impl From<DecodeError> for ProtoError
source§fn from(err: DecodeError) -> Self
fn from(err: DecodeError) -> Self
Converts to this type from the input type.
source§impl<E> From<E> for ProtoErrorwhere
E: Into<ProtoErrorKind>,
impl<E> From<E> for ProtoErrorwhere
E: Into<ProtoErrorKind>,
source§impl<T> From<PoisonError<T>> for ProtoError
impl<T> From<PoisonError<T>> for ProtoError
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 DnsResponseStream
impl From<ProtoError> for DnsResponseStream
source§fn from(e: ProtoError) -> Self
fn from(e: ProtoError) -> Self
Converts to this type from the input type.
source§impl From<ProtoError> for DnsSecError
impl From<ProtoError> for DnsSecError
source§fn from(e: ProtoError) -> Self
fn from(e: ProtoError) -> Self
Converts to this type from the input type.
source§impl From<ProtoError> for DnsSecErrorKind
impl From<ProtoError> for DnsSecErrorKind
source§fn from(source: ProtoError) -> Self
fn from(source: ProtoError) -> Self
Converts to this type from the input type.
source§impl From<ProtoError> for Error
impl From<ProtoError> for Error
source§fn from(e: ProtoError) -> Self
fn from(e: ProtoError) -> Self
Converts to this type from the input type.
source§impl From<ProtoError> for String
impl From<ProtoError> for String
source§fn from(e: ProtoError) -> Self
fn from(e: ProtoError) -> Self
Converts to this type from the input type.
source§impl From<String> for ProtoError
impl From<String> for ProtoError
source§impl RetryableError for ProtoError
impl RetryableError for ProtoError
Auto Trait Implementations§
impl Freeze for ProtoError
impl !RefUnwindSafe for ProtoError
impl Send for ProtoError
impl Sync for ProtoError
impl Unpin for ProtoError
impl !UnwindSafe for ProtoError
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)