[][src]Struct headers::ContentType

pub struct ContentType(_);

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.

Although the mime crate allows the mime options to be any slice, this crate forces the use of Vec. This is to make sure the same header can't have more than 1 type. If this is an issue, it's possible to implement Header on a custom struct.

ABNF

Content-Type = media-type

Example values

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

Examples

use headers::ContentType;

let ct = ContentType::json();

Methods

impl ContentType[src]

pub fn json() -> ContentType[src]

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

pub fn text() -> ContentType[src]

A constructor to easily create a Content-Type: text/plain header.

pub fn text_utf8() -> ContentType[src]

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

pub fn html() -> ContentType[src]

A constructor to easily create a Content-Type: text/html header.

pub fn xml() -> ContentType[src]

A constructor to easily create a Content-Type: text/xml header.

pub fn form_url_encoded() -> ContentType[src]

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

pub fn jpeg() -> ContentType[src]

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

pub fn png() -> ContentType[src]

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

pub fn octet_stream() -> ContentType[src]

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

Trait Implementations

impl From<Mime> for ContentType[src]

impl From<ContentType> for Mime[src]

impl PartialEq<ContentType> for ContentType[src]

impl Clone for ContentType[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ContentType[src]

impl Display for ContentType[src]

impl Header for ContentType[src]

Auto Trait Implementations

impl Send for ContentType

impl Sync for ContentType

Blanket Implementations

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

impl<T> From for T[src]

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

type Owned = T

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

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self