Enum trust_dns_resolver::error::ResolveErrorKind [−][src]
pub enum ResolveErrorKind {
Message(&'static str),
Msg(String),
NoRecordsFound {
query: Query,
valid_until: Option<Instant>,
},
Io(Error),
Proto(ProtoError),
Timeout,
}
Expand description
The error kind for errors that get returned in the crate
Variants
Message(&'static str)
Tuple Fields
0: &'static str
An error with an arbitrary message, referenced as &’static str
Msg(String)
Tuple Fields
0: String
An error with an arbitrary message, stored as String
NoRecordsFound
Fields
query: Query
The query for which no records were found.
No records were found for a query
Io(Error)
Tuple Fields
0: Error
An error got returned from IO
Proto(ProtoError)
Tuple Fields
0: ProtoError
An error got returned by the trust-dns-proto crate
Timeout
A request timed out
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for ResolveErrorKind
impl Send for ResolveErrorKind
impl Sync for ResolveErrorKind
impl Unpin for ResolveErrorKind
impl !UnwindSafe for ResolveErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more