[][src]Struct trust_dns_resolver::lookup::Lookup

pub struct Lookup { /* fields omitted */ }

Result of a DNS query when querying for any record type supported by the TRust-DNS Proto library.

For IP resolution see LookupIp, as it has more features for A and AAAA lookups.

Methods

impl Lookup
[src]

pub fn new_with_max_ttl(rdatas: Arc<Vec<RData>>) -> Self
[src]

Return new instance with given rdatas and the maximum TTL.

pub fn new_with_deadline(rdatas: Arc<Vec<RData>>, valid_until: Instant) -> Self
[src]

Return a new instance with the given rdatas and deadline.

Important traits for LookupIter<'a>
pub fn iter(&self) -> LookupIter
[src]

Returns a borrowed iterator of the returned IPs

pub fn valid_until(&self) -> Instant
[src]

Returns the Instant at which this Lookup is no longer valid.

Trait Implementations

impl From<RData> for Lookup
[src]

impl From<Lookup> for SrvLookup
[src]

impl From<Lookup> for ReverseLookup
[src]

impl From<Lookup> for Ipv4Lookup
[src]

impl From<Lookup> for Ipv6Lookup
[src]

impl From<Lookup> for MxLookup
[src]

impl From<Lookup> for TxtLookup
[src]

impl From<Lookup> for LookupIp
[src]

impl Eq for Lookup
[src]

impl PartialEq<Lookup> for Lookup
[src]

impl Clone for Lookup
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Lookup
[src]

Auto Trait Implementations

impl Send for Lookup

impl Sync for Lookup

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T