Struct async_std_resolver::lookup::Lookup

source ·
pub struct Lookup { /* private fields */ }
Expand description

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

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

Implementations§

source§

impl Lookup

source

pub fn from_rdata(query: Query, rdata: RData) -> Lookup

Return new instance with given rdata and the maximum TTL.

source

pub fn new_with_max_ttl(query: Query, records: Arc<[Record]>) -> Lookup

Return new instance with given records and the maximum TTL.

source

pub fn new_with_deadline( query: Query, records: Arc<[Record]>, valid_until: Instant ) -> Lookup

Return a new instance with the given records and deadline.

source

pub fn query(&self) -> &Query

Returns a reference to the Query that was used to produce this result.

source

pub fn iter(&self) -> LookupIter<'_>

Returns a borrowed iterator of the returned IPs

source

pub fn record_iter(&self) -> LookupRecordIter<'_>

Returns a borrowed iterator of the returned IPs

source

pub fn valid_until(&self) -> Instant

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

source

pub fn records(&self) -> &[Record]

Returns the records list

Trait Implementations§

source§

impl Clone for Lookup

source§

fn clone(&self) -> Lookup

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Lookup

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<Ipv4Lookup> for Lookup

source§

fn from(revlookup: Ipv4Lookup) -> Lookup

Converts to this type from the input type.
source§

impl From<Ipv6Lookup> for Lookup

source§

fn from(revlookup: Ipv6Lookup) -> Lookup

Converts to this type from the input type.
source§

impl From<Lookup> for Ipv4Lookup

source§

fn from(lookup: Lookup) -> Ipv4Lookup

Converts to this type from the input type.
source§

impl From<Lookup> for Ipv6Lookup

source§

fn from(lookup: Lookup) -> Ipv6Lookup

Converts to this type from the input type.
source§

impl From<Lookup> for LookupIp

source§

fn from(lookup: Lookup) -> LookupIp

Converts to this type from the input type.
source§

impl From<Lookup> for MxLookup

source§

fn from(lookup: Lookup) -> MxLookup

Converts to this type from the input type.
source§

impl From<Lookup> for NsLookup

source§

fn from(lookup: Lookup) -> NsLookup

Converts to this type from the input type.
source§

impl From<Lookup> for ReverseLookup

source§

fn from(lookup: Lookup) -> ReverseLookup

Converts to this type from the input type.
source§

impl From<Lookup> for SoaLookup

source§

fn from(lookup: Lookup) -> SoaLookup

Converts to this type from the input type.
source§

impl From<Lookup> for SrvLookup

source§

fn from(lookup: Lookup) -> SrvLookup

Converts to this type from the input type.
source§

impl From<Lookup> for TlsaLookup

source§

fn from(lookup: Lookup) -> TlsaLookup

Converts to this type from the input type.
source§

impl From<Lookup> for TxtLookup

source§

fn from(lookup: Lookup) -> TxtLookup

Converts to this type from the input type.
source§

impl From<LookupIp> for Lookup

source§

fn from(lookup: LookupIp) -> Lookup

Converts to this type from the input type.
source§

impl From<MxLookup> for Lookup

source§

fn from(revlookup: MxLookup) -> Lookup

Converts to this type from the input type.
source§

impl From<NsLookup> for Lookup

source§

fn from(revlookup: NsLookup) -> Lookup

Converts to this type from the input type.
source§

impl From<ReverseLookup> for Lookup

source§

fn from(revlookup: ReverseLookup) -> Lookup

Converts to this type from the input type.
source§

impl From<SoaLookup> for Lookup

source§

fn from(revlookup: SoaLookup) -> Lookup

Converts to this type from the input type.
source§

impl From<TlsaLookup> for Lookup

source§

fn from(revlookup: TlsaLookup) -> Lookup

Converts to this type from the input type.
source§

impl From<TxtLookup> for Lookup

source§

fn from(revlookup: TxtLookup) -> Lookup

Converts to this type from the input type.
source§

impl IntoIterator for Lookup

source§

fn into_iter(self) -> <Lookup as IntoIterator>::IntoIter

This is most likely not a free conversion, the RDatas will be cloned if data is held behind an Arc with more than one reference (which is most likely the case coming from cache)

§

type Item = RData

The type of the elements being iterated over.
§

type IntoIter = LookupIntoIter

Which kind of iterator are we turning this into?
source§

impl PartialEq for Lookup

source§

fn eq(&self, other: &Lookup) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Lookup

source§

impl StructuralPartialEq for Lookup

Auto Trait Implementations§

§

impl Freeze for Lookup

§

impl RefUnwindSafe for Lookup

§

impl Send for Lookup

§

impl Sync for Lookup

§

impl Unpin for Lookup

§

impl UnwindSafe for Lookup

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more