[][src]Struct trust_dns_server::authority::AnyRecords

pub struct AnyRecords { /* fields omitted */ }

An iterator over an ANY query for Records.

The length of this result cannot be known without consuming the iterator.

Lifetimes

  • 'r - the record_set's lifetime, from the catalog
  • 'q - the lifetime of the query/request

Implementations

impl AnyRecords[src]

pub fn new(
    is_secure: bool,
    supported_algorithms: SupportedAlgorithms,
    rrsets: Vec<Arc<RecordSet>>,
    query_type: RecordType,
    query_name: LowerName
) -> Self
[src]

construct a new lookup of any set of records

Trait Implementations

impl Debug for AnyRecords[src]

impl From<AnyRecords> for LookupRecords[src]

impl<'r> IntoIterator for &'r AnyRecords[src]

type Item = &'r Record

The type of the elements being iterated over.

type IntoIter = AnyRecordsIter<'r>

Which kind of iterator are we turning this into?

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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