Enum mailparse::DispositionType [] [src]

pub enum DispositionType {
    Inline,
    Attachment,
    FormData,
    Extension(String),
}

The possible disposition types in a Content-Disposition header. A more comprehensive list of IANA-recognized types can be found at https://www.iana.org/assignments/cont-disp/cont-disp.xhtml. This library only enumerates the types most commonly found in email messages, and provides the Extension value for holding all other types.

Variants

Default value, indicating the content is to be displayed inline as part of the enclosing document.

A disposition indicating the content is not meant for inline display, but whose content can be accessed for use.

A disposition indicating the content contains a form submission.

Extension type to hold any disposition not explicitly enumerated.

Trait Implementations

impl Debug for DispositionType
[src]

Formats the value using the given formatter. Read more

impl Clone for DispositionType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DispositionType
[src]

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

This method tests for !=.

impl Default for DispositionType
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for DispositionType

impl Sync for DispositionType