Enum email::MimeMultipartType [] [src]

pub enum MimeMultipartType {
    Mixed,
    Alternative,
    Digest,
    Parallel,
}

Marks the type of a multipart message

Variants

Entries which are independent.

This value is the default.

As defined by Section 5.1.3 of RFC 2046

Entries which are interchangeable, such that the system can choose whichever is "best" for its use.

As defined by Section 5.1.4 of RFC 2046

Entries are (typically) a collection of messages.

As defined by Section 5.1.5 of RFC 2046

Entry order does not matter, and could be displayed simultaneously.

As defined by Section 5.1.6 of RFC 2046

Methods

impl MimeMultipartType
[src]

Returns the appropriate MimeMultipartType for the given MimeContentType

Returns a MimeContentType that represents this multipart type.

Trait Implementations

impl Eq for MimeMultipartType
[src]

impl PartialEq for MimeMultipartType
[src]

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

This method tests for !=.

impl Debug for MimeMultipartType
[src]

Formats the value using the given formatter.

impl Clone for MimeMultipartType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MimeMultipartType
[src]