[][src]Struct trust_dns_server::authority::Queries

pub struct Queries { /* fields omitted */ }

A set of Queries with the associated serialized data

Implementations

impl Queries[src]

pub fn read(
    decoder: &mut BinDecoder<'_>,
    num_queries: usize
) -> ProtoResult<Self>
[src]

Read queries from a decoder

pub fn len(&self) -> usize[src]

return the number of queries in the request

pub fn is_empty(&self) -> bool[src]

Returns true if there are no queries

pub fn as_bytes(&self) -> &[u8][src]

returns the bytes as they were seen from the Client

Trait Implementations

impl Debug for Queries[src]

impl PartialEq<Queries> for Queries[src]

impl StructuralPartialEq for Queries[src]

Auto Trait Implementations

impl RefUnwindSafe for Queries

impl Send for Queries

impl Sync for Queries

impl Unpin for Queries

impl UnwindSafe for Queries

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>,