pub enum DnsOutcome {
Delegated,
NameError,
NoData,
ServerFailure,
Timeout,
}Variants§
Trait Implementations§
Source§impl Clone for DnsOutcome
impl Clone for DnsOutcome
Source§fn clone(&self) -> DnsOutcome
fn clone(&self) -> DnsOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DnsOutcome
Source§impl Debug for DnsOutcome
impl Debug for DnsOutcome
Source§impl<'de> Deserialize<'de> for DnsOutcome
impl<'de> Deserialize<'de> for DnsOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DnsOutcome
Source§impl PartialEq for DnsOutcome
impl PartialEq for DnsOutcome
Source§impl Serialize for DnsOutcome
impl Serialize for DnsOutcome
impl StructuralPartialEq for DnsOutcome
Auto Trait Implementations§
impl Freeze for DnsOutcome
impl RefUnwindSafe for DnsOutcome
impl Send for DnsOutcome
impl Sync for DnsOutcome
impl Unpin for DnsOutcome
impl UnsafeUnpin for DnsOutcome
impl UnwindSafe for DnsOutcome
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