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-8application/json
Examples
use headers::ContentType; let ct = ContentType::json();
Methods
impl ContentType[src]
impl ContentTypepub fn json() -> ContentType[src]
pub fn json() -> ContentTypeA constructor to easily create a Content-Type: application/json header.
pub fn text() -> ContentType[src]
pub fn text() -> ContentTypeA constructor to easily create a Content-Type: text/plain header.
pub fn text_utf8() -> ContentType[src]
pub fn text_utf8() -> ContentTypeA constructor to easily create a Content-Type: text/plain; charset=utf-8 header.
pub fn html() -> ContentType[src]
pub fn html() -> ContentTypeA constructor to easily create a Content-Type: text/html header.
pub fn xml() -> ContentType[src]
pub fn xml() -> ContentTypeA constructor to easily create a Content-Type: text/xml header.
pub fn form_url_encoded() -> ContentType[src]
pub fn form_url_encoded() -> ContentTypeA constructor to easily create a Content-Type: application/www-form-url-encoded header.
pub fn jpeg() -> ContentType[src]
pub fn jpeg() -> ContentTypeA constructor to easily create a Content-Type: image/jpeg header.
pub fn png() -> ContentType[src]
pub fn png() -> ContentTypeA constructor to easily create a Content-Type: image/png header.
pub fn octet_stream() -> ContentType[src]
pub fn octet_stream() -> ContentTypeA constructor to easily create a Content-Type: application/octet-stream header.
Trait Implementations
impl Clone for ContentType[src]
impl Clone for ContentTypefn clone(&self) -> ContentType[src]
fn clone(&self) -> ContentTypeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for ContentType[src]
impl Debug for ContentTypefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for ContentType[src]
impl PartialEq for ContentTypefn eq(&self, other: &ContentType) -> bool[src]
fn eq(&self, other: &ContentType) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ContentType) -> bool[src]
fn ne(&self, other: &ContentType) -> boolThis method tests for !=.
impl Header for ContentType[src]
impl Header for ContentTypeconst NAME: &'static HeaderName
NAME: &'static HeaderName = &::http::header::CONTENT_TYPE
The name of this header.
fn decode(values: &mut Values) -> Option<Self>[src]
fn decode(values: &mut Values) -> Option<Self>Decode this type from a HeaderValue.
fn encode(&self, values: &mut ToValues)[src]
fn encode(&self, values: &mut ToValues)Encode this type to a HeaderMap. Read more
impl From<Mime> for ContentType[src]
impl From<Mime> for ContentTypefn from(m: Mime) -> ContentType[src]
fn from(m: Mime) -> ContentTypePerforms the conversion.
impl From<ContentType> for Mime[src]
impl From<ContentType> for Mimefn from(ct: ContentType) -> Mime[src]
fn from(ct: ContentType) -> MimePerforms the conversion.
impl Display for ContentType[src]
impl Display for ContentTypeAuto Trait Implementations
impl Send for ContentType
impl Send for ContentTypeimpl Sync for ContentType
impl Sync for ContentType