Struct trust_dns_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 From<Error> for ProtoError
impl From<Error> for ProtoError
source§impl From<FromUtf8Error> for ProtoError
impl From<FromUtf8Error> for ProtoError
source§fn from(e: FromUtf8Error) -> Self
fn from(e: FromUtf8Error) -> Self
Converts to this type from the input type.
source§impl From<ParseError> for ProtoError
impl From<ParseError> for ProtoError
source§fn from(e: ParseError) -> Self
fn from(e: ParseError) -> Self
Converts to this type from the input type.
source§impl From<ParseIntError> for ProtoError
impl From<ParseIntError> for ProtoError
source§fn from(e: ParseIntError) -> Self
fn from(e: ParseIntError) -> Self
Converts to this type from the input type.
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 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<ProtoErrorKind> for ProtoError
impl From<ProtoErrorKind> for ProtoError
source§fn from(kind: ProtoErrorKind) -> Self
fn from(kind: ProtoErrorKind) -> Self
Converts to this type from the input type.
source§impl From<SslErrorStack> for ProtoError
impl From<SslErrorStack> for ProtoError
source§fn from(e: SslErrorStack) -> Self
fn from(e: SslErrorStack) -> Self
Converts to this type from the input type.
source§impl From<String> for ProtoError
impl From<String> for ProtoError
source§impl From<Unspecified> for ProtoError
impl From<Unspecified> for ProtoError
source§fn from(e: Unspecified) -> Self
fn from(e: Unspecified) -> Self
Converts to this type from the input type.