Struct typed_headers::ContentType[][src]

pub struct ContentType(pub Mime);

Content-Type header, defined in RFC7231

The Content-Type header field indicates the media type of the associated representation: either the representation enclosed in the message payload or the selected representation, as determined by the message semantics. The indicated media type defines both the data format and how that data is intended to be processed by a recipient, within the scope of the received message semantics, after any content codings indicated by Content-Encoding are decoded.

ABNF

Content-Type = media-type

Example values

  • text/html; charset=utf-8
  • application/json

Methods from Deref<Target = Mime>

Get the top level media type for this Mime.

Example

let mime = mime::TEXT_PLAIN;
assert_eq!(mime.type_(), "text");
assert_eq!(mime.type_(), mime::TEXT);

Get the subtype of this Mime.

Example

let mime = mime::TEXT_PLAIN;
assert_eq!(mime.subtype(), "plain");
assert_eq!(mime.subtype(), mime::PLAIN);

Get an optional +suffix for this Mime.

Example

let svg = "image/svg+xml".parse::<mime::Mime>().unwrap();
assert_eq!(svg.suffix(), Some(mime::XML));
assert_eq!(svg.suffix().unwrap(), "xml");


assert!(mime::TEXT_PLAIN.suffix().is_none());

Look up a parameter by name.

Example

let mime = mime::TEXT_PLAIN_UTF_8;
assert_eq!(mime.get_param(mime::CHARSET), Some(mime::UTF_8));
assert_eq!(mime.get_param("charset").unwrap(), "utf-8");
assert!(mime.get_param("boundary").is_none());

let mime = "multipart/form-data; boundary=ABCDEFG".parse::<mime::Mime>().unwrap();
assert_eq!(mime.get_param(mime::BOUNDARY).unwrap(), "ABCDEFG");

Important traits for Params<'a>

Returns an iterator over the parameters.

Trait Implementations

impl Clone for ContentType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ContentType
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ContentType
[src]

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

This method tests for !=.

impl Deref for ContentType
[src]

The resulting type after dereferencing.

Dereferences the value.

impl DerefMut for ContentType
[src]

Mutably dereferences the value.

impl Header for ContentType
[src]

Returns the name of this header. Read more

Parses the header from the raw value bytes. Read more

Serializes the header to raw values. Read more

Auto Trait Implementations

impl Send for ContentType

impl Sync for ContentType