Struct mail_parser::ContentType [−][src]
pub struct ContentType<'x> {
pub c_type: Cow<'x, str>,
pub c_subtype: Option<Cow<'x, str>>,
pub attributes: Option<HashMap<Cow<'x, str>, Cow<'x, str>>>,
}Expand description
An RFC2047 Content-Type or RFC2183 Content-Disposition MIME header field.
Fields
c_type: Cow<'x, str>c_subtype: Option<Cow<'x, str>>attributes: Option<HashMap<Cow<'x, str>, Cow<'x, str>>>Implementations
An RFC2047 Content-Type or RFC2183 Content-Disposition MIME header field.
Returns the sub-type
Returns an attribute by name
Returns true when the provided attribute name is present
Returns true if the Content-Disposition type is “attachment”
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
