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

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

Minfo record data.

The Minfo record specifies a mailbox which is responsible for the mailing list or mailbox and a mailbox that receives error messages related to the list or box.

The Minfo record is experimental.

The Minfo record type is defined in RFC 1035, section 3.3.7.

Methods

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

Creates a new Minfo record data from the components.

The responsible mail box.

The domain name specifies the mailbox which is responsible for the mailing list or mailbox. If this domain name is the root, the owner of the Minfo record is responsible for itself.

The error mail box.

The domain name specifies a mailbox which is to receive error messages related to the mailing list or mailbox specified by the owner of the record. If this is the root domain name, errors should be returned to the sender of the message.

impl Minfo<DNameBuf>
[src]

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter.

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

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

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

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the maximum of two values. Read more

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the minimum of two values. Read more

impl<N: PartialEq + DName> PartialEq for Minfo<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 Minfo<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 Minfo<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 Minfo<ParsedDName<'a>>
[src]

Parses the record data out of a parser. Read more

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

Formats the value using the given formatter. Read more