Struct domain::rdata::rfc1035::Soa[][src]

pub struct Soa<N: DName> { /* fields omitted */ }

Soa record data.

Soa records mark the top of a zone and contain information pertinent for name server maintenance operations.

The Soa record type is defined in RFC 1035, section 3.3.13.

Methods

impl<N: DName> Soa<N>
[src]

Creates new Soa record data from content.

The primary name server for the zone.

The mailbox for the person responsible for this zone.

The serial number of the original copy of the zone.

The time interval in seconds before the zone should be refreshed.

The time in seconds before a failed refresh is retried.

The upper limit of time in seconds the zone is authoritative.

The minimum TTL to be exported with any RR from this zone.

impl Soa<DNameBuf>
[src]

Trait Implementations

impl<N: Clone + DName> Clone for Soa<N>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<N: Debug + DName> Debug for Soa<N>
[src]

Formats the value using the given formatter. Read more

impl<N: Eq + DName> Eq for Soa<N>
[src]

impl<N: Ord + DName> Ord for Soa<N>
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<N: PartialEq + DName> PartialEq for Soa<N>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<N: PartialOrd + DName> PartialOrd for Soa<N>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<N: DName> RecordData for Soa<N>
[src]

Returns the record type for this record data instance. Read more

Appends the record data to the end of a composer.

impl<'a> ParsedRecordData<'a> for Soa<ParsedDName<'a>>
[src]

Parses the record data out of a parser. Read more

impl<N: DName + Display> Display for Soa<N>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<N> Send for Soa<N> where
    N: Send

impl<N> Sync for Soa<N> where
    N: Sync