pub struct DnsPacket<'a> {
    pub header: DnsHeader,
    pub questions: Vec<Question<'a>, Global>,
    pub answers: Vec<ResourceRecord<'a>, Global>,
    pub authority: Vec<ResourceRecord<'a>, Global>,
    pub additional: Vec<ResourceRecord<'a>, Global>,
}
Expand description

Represents a complete DNS packet.

A DNS packet has the following sections in order:

+---------------------+
|        Header       |
+---------------------+
|       Question      | the question(s) for the name server
+---------------------+
|        Answer       | RRs answering the question
+---------------------+
|      Authority      | RRs pointing toward an authority
+---------------------+
|      Additional     | RRs holding additional information
+---------------------+

For the header the DnsHeader type is used. For the rest, Questions are represented with the Question type, and RRs with the ResourceRecord type.

Fields

header: DnsHeader

The DNS Header

questions: Vec<Question<'a>, Global>

The question(s) for the name server

answers: Vec<ResourceRecord<'a>, Global>

Resource Records answering the question(s)

authority: Vec<ResourceRecord<'a>, Global>

Resource Records pointing toward a domain authority

additional: Vec<ResourceRecord<'a>, Global>

Resource Records holding additional information

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.