Struct trust_dns_proto::op::message::MessageParts [−][src]
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
Returns the “default value” for a type. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more