Struct iron::headers::ContentType [] [src]

pub struct ContentType(pub Mime<Vec<(Attr, Value)>>);

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

Examples

use hyper::header::{Headers, ContentType};
use hyper::mime::{Mime, TopLevel, SubLevel};
 
let mut headers = Headers::new();
 
headers.set(
    ContentType(Mime(TopLevel::Text, SubLevel::Html, vec![]))
);
use hyper::header::{Headers, ContentType};
use hyper::mime::{Mime, TopLevel, SubLevel, Attr, Value};
 
let mut headers = Headers::new();
 
headers.set(
    ContentType(Mime(TopLevel::Application, SubLevel::Json,
                     vec![(Attr::Charset, Value::Utf8)]))
);

Methods

impl ContentType

A constructor to easily create a Content-Type: application/json header.

A constructor to easily create a Content-Type: text/plain; charset=utf-8 header.

A constructor to easily create a Content-Type: text/html; charset=utf-8 header.

A constructor to easily create a Content-Type: application/www-form-url-encoded header.

A constructor to easily create a Content-Type: image/jpeg header.

A constructor to easily create a Content-Type: image/png header.

Methods from Deref<Target=Mime<Vec<(Attr, Value)>>>

Trait Implementations

impl PartialEq<ContentType> for ContentType

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

This method tests for !=.

impl Debug for ContentType

Formats the value using the given formatter.

impl Clone for ContentType

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Deref for ContentType

The resulting type after dereferencing

The method called to dereference a value

impl DerefMut for ContentType

impl Header for ContentType

Returns the name of the header field this belongs to. Read more

Parse a header from a raw stream of bytes. Read more

impl HeaderFormat for ContentType

Format a header to be output into a TcpStream. Read more

impl Display for ContentType

Formats the value using the given formatter.