Struct trust_dns_proto::op::message::MessageParts
source · pub struct MessageParts {
pub header: Header,
pub queries: Vec<Query>,
pub answers: Vec<Record>,
pub name_servers: Vec<Record>,
pub additionals: Vec<Record>,
pub sig0: Vec<Record>,
pub edns: Option<Edns>,
}
Expand description
Consumes Message
giving public access to fields in Message
so they can be
destructured and taken by value
use trust_dns_proto::op::{Message, MessageParts};
let msg = Message::new();
let MessageParts { queries, .. } = msg.into_parts();
Fields§
§header: Header
message header
queries: Vec<Query>
message queries
answers: Vec<Record>
message answers
name_servers: Vec<Record>
message name_servers
additionals: Vec<Record>
message additional records
sig0: Vec<Record>
sig0 or tsig
edns: Option<Edns>
optional edns records
Trait Implementations§
source§impl Clone for MessageParts
impl Clone for MessageParts
source§fn clone(&self) -> MessageParts
fn clone(&self) -> MessageParts
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 MessageParts
impl Debug for MessageParts
source§impl Default for MessageParts
impl Default for MessageParts
source§fn default() -> MessageParts
fn default() -> MessageParts
Returns the “default value” for a type. Read more
source§impl From<Message> for MessageParts
impl From<Message> for MessageParts
source§impl PartialEq for MessageParts
impl PartialEq for MessageParts
source§fn eq(&self, other: &MessageParts) -> bool
fn eq(&self, other: &MessageParts) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MessageParts
Auto Trait Implementations§
impl RefUnwindSafe for MessageParts
impl Send for MessageParts
impl Sync for MessageParts
impl Unpin for MessageParts
impl UnwindSafe for MessageParts
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