Struct trust_dns_proto::op::query::QueryParts
source · [−]pub struct QueryParts {
pub name: Name,
pub query_type: RecordType,
pub query_class: DNSClass,
}
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
Trait Implementations
sourceimpl Clone for QueryParts
impl Clone for QueryParts
sourcefn clone(&self) -> QueryParts
fn clone(&self) -> QueryParts
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for QueryParts
impl Debug for QueryParts
sourceimpl Hash for QueryParts
impl Hash for QueryParts
sourceimpl PartialEq<QueryParts> for QueryParts
impl PartialEq<QueryParts> for QueryParts
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &QueryParts) -> bool
fn ne(&self, other: &QueryParts) -> bool
This method tests for !=
.
impl Eq for QueryParts
impl StructuralEq for QueryParts
impl StructuralPartialEq for QueryParts
Auto Trait Implementations
impl RefUnwindSafe for QueryParts
impl Send for QueryParts
impl Sync for QueryParts
impl Unpin for QueryParts
impl UnwindSafe for QueryParts
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<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more