[][src]Struct websocket::header::ContentType

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
[src]

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 DerefMut for ContentType
[src]

Mutably dereferences the value.

impl Debug for ContentType
[src]

Formats the value using the given formatter. Read more

impl Deref for ContentType
[src]

The resulting type after dereferencing.

Dereferences the value.

impl Display for ContentType
[src]

Formats the value using the given formatter. Read more

impl PartialEq<ContentType> 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 HeaderFormat for ContentType
[src]

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

impl Header for ContentType
[src]

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

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

impl Clone for ContentType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ContentType

impl Sync for ContentType

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

Converts the given value to a String. Read more

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> HeaderClone for T where
    T: Sealed, 
[src]

impl<T> Typeable for T where
    T: Any
[src]

Get the TypeId of this object.

impl<T> Erased for T
[src]