Struct headers_ext::ContentType[][src]

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]

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

A constructor to easily create a Content-Type: text/plain 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 header.

A constructor to easily create a Content-Type: text/xml 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.

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

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

NAME: &'static HeaderName = &::http::header::CONTENT_TYPE

The name of this header.

Decode this type from a HeaderValue.

Encode this type to a HeaderMap. Read more

impl From<Mime> for ContentType
[src]

Performs the conversion.

impl From<ContentType> for Mime
[src]

Performs the conversion.

impl Display for ContentType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ContentType

impl Sync for ContentType