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]

[src]

Creates new Soa record data from content.

[src]

The primary name server for the zone.

[src]

The mailbox for the person responsible for this zone.

[src]

The serial number of the original copy of the zone.

[src]

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

[src]

The time in seconds before a failed refresh is retried.

[src]

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

[src]

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

impl Soa<DNameBuf>
[src]

[src]

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[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]

[src]

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

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

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

[src]

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

[src]

This method tests for !=.

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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]

[src]

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

[src]

Appends the record data to the end of a composer.

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

[src]

Parses the record data out of a parser. Read more

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

[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