Struct email::mimeheaders::MimeContentTypeHeader [] [src]

pub struct MimeContentTypeHeader {
    pub content_type: MimeContentType,
    pub params: HashMap<String, String>,
}

Special header type for the Content-Type header.

Fields

The content type presented by this header

Parameters of this header

Trait Implementations

impl FromHeader for MimeContentTypeHeader
[src]

[src]

Parse the value of the header. Read more

impl ToHeader for MimeContentTypeHeader
[src]

[src]

Turn the value into a String suitable for being used in a message header. Read more

Auto Trait Implementations