Struct hickory_proto::op::query::QueryParts
source · pub struct QueryParts {
pub name: Name,
pub query_type: RecordType,
pub query_class: DNSClass,
pub mdns_unicast_response: bool,
}
Expand description
Consumes Query
giving public access to fields of Query
so they can
be destructured and taken by value.
Fields§
§name: Name
QNAME
query_type: RecordType
QTYPE
query_class: DNSClass
QCLASS
mdns_unicast_response: bool
Available on crate feature
mdns
only.mDNS unicast-response bit set or not
Trait Implementations§
source§impl Clone for QueryParts
impl Clone for QueryParts
source§fn clone(&self) -> QueryParts
fn clone(&self) -> QueryParts
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for QueryParts
impl Debug for QueryParts
source§impl From<Query> for QueryParts
impl From<Query> for QueryParts
source§impl Hash for QueryParts
impl Hash for QueryParts
source§impl PartialEq for QueryParts
impl PartialEq for QueryParts
source§fn eq(&self, other: &QueryParts) -> bool
fn eq(&self, other: &QueryParts) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for QueryParts
impl StructuralPartialEq for QueryParts
Auto Trait Implementations§
impl Freeze for QueryParts
impl RefUnwindSafe for QueryParts
impl Send for QueryParts
impl Sync for QueryParts
impl Unpin for QueryParts
impl UnwindSafe for QueryParts
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.