Enum dominion_parser::header::ResponseCode
source · [−]#[non_exhaustive]
pub enum ResponseCode {
NoError,
FormErr,
ServFail,
NXDomain,
NotImp,
Refused,
}Expand description
Response code
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
NoError
There was no error.
FormErr
Format error - The name server was unable to interpret the query.
ServFail
Server failure - The name server was unable to process this query due to a problem with the name server.
NXDomain
Name Error - Meaningful only for responses from an authoritative name server, this code signifies that the domain name referenced in the query does not exist.
NotImp
Not Implemented - The name server does not support the requested kind of query.
Refused
Refused - The name server refuses to perform the specified operation for policy reasons. For example, a name server may not wish to provide the information to the particular requester, or a name server may not wish to perform a particular operation
Trait Implementations
sourceimpl Clone for ResponseCode
impl Clone for ResponseCode
sourcefn clone(&self) -> ResponseCode
fn clone(&self) -> ResponseCode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ResponseCode
impl Debug for ResponseCode
sourceimpl From<ResponseCode> for u16
impl From<ResponseCode> for u16
sourcefn from(flag: ResponseCode) -> Self
fn from(flag: ResponseCode) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ResponseCode> for ResponseCode
impl PartialEq<ResponseCode> for ResponseCode
sourceimpl TryFrom<u16> for ResponseCode
impl TryFrom<u16> for ResponseCode
impl Copy for ResponseCode
impl Eq for ResponseCode
impl StructuralEq for ResponseCode
impl StructuralPartialEq for ResponseCode
Auto Trait Implementations
impl RefUnwindSafe for ResponseCode
impl Send for ResponseCode
impl Sync for ResponseCode
impl Unpin for ResponseCode
impl UnwindSafe for ResponseCode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more