Struct hyper::header::ContentType

source ·
pub struct ContentType(pub Mime);
Expand description

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=ISO-8859-4

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)]))
);

Tuple Fields§

§0: Mime

Implementations§

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>§

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
The resulting type after dereferencing.
Dereferences the value.
Mutably dereferences the value.
Formats the value using the given formatter. Read more
Returns the name of the header field this belongs to. Read more
Parse a header from a raw stream of bytes. Read more
Format a header to be output into a TcpStream. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Get the TypeId of this object.