Struct mailparse::ParsedContentType [−][src]
pub struct ParsedContentType {
pub mimetype: String,
pub charset: String,
pub params: BTreeMap<String, String>,
}A struct to hold a more structured representation of the Content-Type header. This is provided mostly as a convenience since this metadata is usually needed to interpret the message body properly.
Fields
mimetype: String
The type of the data, for example "text/plain" or "application/pdf".
charset: String
The charset used to decode the raw byte data, for example "iso-8859-1" or "utf-8".
params: BTreeMap<String, String>
The additional params of Content-Type, e.g. filename and boundary. The keys in the map will be lowercased, and the values will have any enclosing quotes stripped.
Trait Implementations
impl Debug for ParsedContentType[src]
impl Debug for ParsedContentTypefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Default for ParsedContentType[src]
impl Default for ParsedContentTypeAuto Trait Implementations
impl Send for ParsedContentType
impl Send for ParsedContentTypeimpl Sync for ParsedContentType
impl Sync for ParsedContentType