pub struct RDataSoa {
    pub mname: Vec<u8>,
    pub rname: Vec<u8>,
    pub serial: u32,
    pub refresh: u32,
    pub retry: u32,
    pub expire: u32,
    pub minimum: u32,
}

Fields

mname: Vec<u8>

Primary NS for this zone

rname: Vec<u8>

Authority’s mailbox

serial: u32

Serial version number

refresh: u32

Refresh interval in seconds

retry: u32

Retry interval in seconds

expire: u32

Upper time limit until zone is no longer authoritative in seconds

minimum: u32

Minimum ttl for records in this zone in seconds

Trait Implementations

Formats the value using the given formatter. 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

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 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.