Struct trust_dns_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 Trust-DNS Proto library.
For IP resolution see LookupIp, as it has more features for A and AAAA lookups.
Implementations
sourceimpl Lookup
impl Lookup
sourcepub fn from_rdata(query: Query, rdata: RData) -> Self
pub fn from_rdata(query: Query, rdata: RData) -> Self
Return new instance with given rdata and the maximum TTL.
sourcepub fn new_with_max_ttl(query: Query, records: Arc<[Record]>) -> Self
pub fn new_with_max_ttl(query: Query, records: Arc<[Record]>) -> Self
Return new instance with given records and the maximum TTL.
sourcepub fn new_with_deadline(
query: Query,
records: Arc<[Record]>,
valid_until: Instant
) -> Self
pub fn new_with_deadline(
query: Query,
records: Arc<[Record]>,
valid_until: Instant
) -> Self
Return a new instance with the given records and deadline.
sourcepub fn query(&self) -> &Query
pub fn query(&self) -> &Query
Returns a reference to the Query
that was used to produce this result.
sourcepub fn iter(&self) -> LookupIter<'_>ⓘNotable traits for LookupIter<'a>impl<'a> Iterator for LookupIter<'a> type Item = &'a RData;
pub fn iter(&self) -> LookupIter<'_>ⓘNotable traits for LookupIter<'a>impl<'a> Iterator for LookupIter<'a> type Item = &'a RData;
Returns a borrowed iterator of the returned IPs
sourcepub fn record_iter(&self) -> LookupRecordIter<'_>ⓘNotable traits for LookupRecordIter<'a>impl<'a> Iterator for LookupRecordIter<'a> type Item = &'a Record;
pub fn record_iter(&self) -> LookupRecordIter<'_>ⓘNotable traits for LookupRecordIter<'a>impl<'a> Iterator for LookupRecordIter<'a> type Item = &'a Record;
Returns a borrowed iterator of the returned IPs
sourcepub fn valid_until(&self) -> Instant
pub fn valid_until(&self) -> Instant
Returns the Instant
at which this Lookup
is no longer valid.
Trait Implementations
sourceimpl From<Lookup> for Ipv4Lookup
impl From<Lookup> for Ipv4Lookup
sourceimpl From<Lookup> for Ipv6Lookup
impl From<Lookup> for Ipv6Lookup
sourceimpl From<Lookup> for ReverseLookup
impl From<Lookup> for ReverseLookup
sourceimpl From<Lookup> for TlsaLookup
impl From<Lookup> for TlsaLookup
sourceimpl IntoIterator for Lookup
impl IntoIterator for Lookup
sourcefn into_iter(self) -> Self::IntoIter
fn into_iter(self) -> Self::IntoIter
This is most likely not a free conversion, the RData
s 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 IntoIter = LookupIntoIter
type IntoIter = LookupIntoIter
Which kind of iterator are we turning this into?
sourceimpl PartialEq<Lookup> for Lookup
impl PartialEq<Lookup> for Lookup
impl Eq for Lookup
impl StructuralEq for Lookup
impl StructuralPartialEq for Lookup
Auto Trait Implementations
impl RefUnwindSafe for Lookup
impl Send for Lookup
impl Sync for Lookup
impl Unpin for Lookup
impl UnwindSafe for Lookup
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
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more