Struct rocket::http::ContentType [] [src]

pub struct ContentType(pub MediaType);

Representation of HTTP Content-Types.

Usage

ContentTypes should rarely be created directly. Instead, an associated constant should be used; one is declared for most commonly used content types.

Example

A Content-Type of text/html; charset=utf-8 can be instantiated via the HTML constant:

use rocket::http::ContentType;

let html = ContentType::HTML;

Header

ContentType implements Into<Header>. As such, it can be used in any context where an Into<Header> is expected:

use rocket::http::ContentType;
use rocket::response::Response;

let response = Response::build().header(ContentType::HTML).finalize();

Methods

impl ContentType
[src]

Creates a new ContentType with top-level type top and subtype sub. This should only be used to construct uncommon or custom content types. Use an associated constant for everything else.

Example

Create a custom application/x-person content type:

use rocket::http::ContentType;

let custom = ContentType::new("application", "x-person");
assert_eq!(custom.top(), "application");
assert_eq!(custom.sub(), "x-person");

Returns the Content-Type associated with the extension ext if the extension is recognized. Not all extensions are recognized. If an extensions is not recognized, then this method returns None. The currently recognized extensions are txt, html, htm, xml, csv, js, css, json, png, gif, bmp, jpeg, jpg, webp, svg, pdf, ttf, otf, woff, and woff2.

Example

A recognized content type:

use rocket::http::ContentType;

let xml = ContentType::from_extension("xml");
assert_eq!(xml, Some(ContentType::XML));

An unrecognized content type:

use rocket::http::ContentType;

let foo = ContentType::from_extension("foo");
assert!(foo.is_none());

Creates a new ContentType with top-level type top, subtype sub, and parameters ps. This should only be used to construct uncommon or custom content types. Use an associated constant for everything else.

Example

Create a custom application/x-id; id=1 content type:

use rocket::http::ContentType;

let id = ContentType::with_params("application", "x-id", ("id", "1"));
assert_eq!(id.to_string(), "application/x-id; id=1".to_string());

Create a custom text/person; name=bob; weight=175 content type:

use rocket::http::ContentType;

let params = vec![("name", "bob"), ("ref", "2382")];
let mt = ContentType::with_params("text", "person", params);
assert_eq!(mt.to_string(), "text/person; name=bob; ref=2382".to_string());

Borrows the inner MediaType of self.

Example

use rocket::http::{ContentType, MediaType};

let http = ContentType::HTML;
let media_type = http.media_type();

Any: ContentType = ContentType(<MediaType>::Any)

Content-Type for any media type : * / *

HTML: ContentType = ContentType(<MediaType>::HTML)

Content-Type for HTML : text / html ; charset = utf-8

Plain: ContentType = ContentType(<MediaType>::Plain)

Content-Type for plain text : text / plain ; charset = utf-8

JSON: ContentType = ContentType(<MediaType>::JSON)

Content-Type for JSON : application / json

MsgPack: ContentType = ContentType(<MediaType>::MsgPack)

Content-Type for MessagePack : application / msgpack

Form: ContentType = ContentType(<MediaType>::Form)

Content-Type for forms : application / x-www-form-urlencoded

JavaScript: ContentType = ContentType(<MediaType>::JavaScript)

Content-Type for JavaScript : application / javascript

CSS: ContentType = ContentType(<MediaType>::CSS)

Content-Type for CSS : text / css ; charset = utf-8

FormData: ContentType = ContentType(<MediaType>::FormData)

Content-Type for multipart form data : multipart / form-data

XML: ContentType = ContentType(<MediaType>::XML)

Content-Type for XML : text / xml ; charset = utf-8

CSV: ContentType = ContentType(<MediaType>::CSV)

Content-Type for CSV : text / csv ; charset = utf-8

PNG: ContentType = ContentType(<MediaType>::PNG)

Content-Type for PNG : image / png

GIF: ContentType = ContentType(<MediaType>::GIF)

Content-Type for GIF : image / gif

BMP: ContentType = ContentType(<MediaType>::BMP)

Content-Type for BMP : image / bmp

JPEG: ContentType = ContentType(<MediaType>::JPEG)

Content-Type for JPEG : image / jpeg

WEBP: ContentType = ContentType(<MediaType>::WEBP)

Content-Type for WEBP : image / webp

SVG: ContentType = ContentType(<MediaType>::SVG)

Content-Type for SVG : image / svg+xml

PDF: ContentType = ContentType(<MediaType>::PDF)

Content-Type for PDF : application / pdf

TTF: ContentType = ContentType(<MediaType>::TTF)

Content-Type for TTF : application / font-sfnt

OTF: ContentType = ContentType(<MediaType>::OTF)

Content-Type for OTF : application / font-sfnt

WOFF: ContentType = ContentType(<MediaType>::WOFF)

Content-Type for WOFF : application / font-woff

WOFF2: ContentType = ContentType(<MediaType>::WOFF2)

Content-Type for WOFF2 : font / woff2

Methods from Deref<Target = MediaType>

Returns the top-level type for this media type. The return type, UncasedStr, has caseless equality comparison and hashing.

Example

use rocket::http::MediaType;

let plain = MediaType::Plain;
assert_eq!(plain.top(), "text");
assert_eq!(plain.top(), "TEXT");
assert_eq!(plain.top(), "Text");

Returns the subtype for this media type. The return type, UncasedStr, has caseless equality comparison and hashing.

Example

use rocket::http::MediaType;

let plain = MediaType::Plain;
assert_eq!(plain.sub(), "plain");
assert_eq!(plain.sub(), "PlaIN");
assert_eq!(plain.sub(), "pLaIn");

Returns a u8 representing how specific the top-level type and subtype of this media type are.

The return value is either 0, 1, or 2, where 2 is the most specific. A 0 is returned when both the top and sublevel types are *. A 1 is returned when only one of the top or sublevel types is *, and a 2 is returned when neither the top or sublevel types are *.

Example

use rocket::http::MediaType;

let mt = MediaType::Plain;
assert_eq!(mt.specificity(), 2);

let mt = MediaType::new("text", "*");
assert_eq!(mt.specificity(), 1);

let mt = MediaType::Any;
assert_eq!(mt.specificity(), 0);

Compares self with other and returns true if self and other are exactly equal to eachother, including with respect to their parameters.

This is different from the PartialEq implementation in that it considers parameters. If PartialEq returns false, this function is guaranteed to return false. Similarly, if this function returns true, PartialEq is guaranteed to return true. However, if PartialEq returns true, this function may or may not return true.

Example

use rocket::http::MediaType;

let plain = MediaType::Plain;
let plain2 = MediaType::with_params("text", "plain", ("charset", "utf-8"));
let just_plain = MediaType::new("text", "plain");

// The `PartialEq` implementation doesn't consider parameters.
assert!(plain == just_plain);
assert!(just_plain == plain2);
assert!(plain == plain2);

// While `exact_eq` does.
assert!(!plain.exact_eq(&just_plain));
assert!(!plain2.exact_eq(&just_plain));
assert!(plain.exact_eq(&plain2));

Returns an iterator over the (key, value) pairs of the media type's parameter list. The iterator will be empty if the media type has no parameters.

Example

The MediaType::Plain type has one parameter: charset=utf-8:

use rocket::http::MediaType;

let plain = MediaType::Plain;
let plain_params: Vec<_> = plain.params().collect();
assert_eq!(plain_params, vec![("charset", "utf-8")]);

The MediaType::PNG type has no parameters:

use rocket::http::MediaType;

let png = MediaType::PNG;
assert_eq!(png.params().count(), 0);

Returns true if self is the media type for any media type , without considering parameters.

Returns true if self is the media type for HTML , without considering parameters.

Returns true if self is the media type for plain text , without considering parameters.

Returns true if self is the media type for JSON , without considering parameters.

Returns true if self is the media type for MessagePack , without considering parameters.

Returns true if self is the media type for forms , without considering parameters.

Returns true if self is the media type for JavaScript , without considering parameters.

Returns true if self is the media type for CSS , without considering parameters.

Returns true if self is the media type for multipart form data , without considering parameters.

Returns true if self is the media type for XML , without considering parameters.

Returns true if self is the media type for CSV , without considering parameters.

Returns true if self is the media type for PNG , without considering parameters.

Returns true if self is the media type for GIF , without considering parameters.

Returns true if self is the media type for BMP , without considering parameters.

Returns true if self is the media type for JPEG , without considering parameters.

Returns true if self is the media type for WEBP , without considering parameters.

Returns true if self is the media type for SVG , without considering parameters.

Returns true if self is the media type for PDF , without considering parameters.

Returns true if self is the media type for TTF , without considering parameters.

Returns true if self is the media type for OTF , without considering parameters.

Returns true if self is the media type for WOFF , without considering parameters.

Returns true if self is the media type for WOFF2 , without considering parameters.

Returns true if this MediaType is known to Rocket, that is, there is an associated constant for self.

Trait Implementations

impl Debug for ContentType
[src]

Formats the value using the given formatter.

impl Clone for ContentType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. 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 Hash for ContentType
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for ContentType
[src]

Returns a ContentType of Any, or */*.

impl Deref for ContentType
[src]

The resulting type after dereferencing

The method called to dereference a value

impl FromStr for ContentType
[src]

The associated error which can be returned from parsing.

Parses a ContentType from a given Content-Type header value.

Examples

Parsing an application/json:

use std::str::FromStr;
use rocket::http::ContentType;

let json = ContentType::from_str("application/json").unwrap();
assert!(json.is_known());
assert_eq!(json, ContentType::JSON);

Parsing a content type extension:

use std::str::FromStr;
use rocket::http::ContentType;

let custom = ContentType::from_str("application/x-custom").unwrap();
assert!(!custom.is_known());
assert_eq!(custom.top(), "application");
assert_eq!(custom.sub(), "x-custom");

Parsing an invalid Content-Type value:

use std::str::FromStr;
use rocket::http::ContentType;

let custom = ContentType::from_str("application//x-custom");
assert!(custom.is_err());

impl Display for ContentType
[src]

Formats the ContentType as an HTTP Content-Type value.

Example

use rocket::http::ContentType;

let ct = format!("{}", ContentType::JSON);
assert_eq!(ct, "application/json");

impl Into<Header<'static>> for ContentType
[src]

Creates a new Header with name Content-Type and the value set to the HTTP rendering of this Content-Type.

Performs the conversion.

impl<'a, 'r> FromRequest<'a, 'r> for &'a ContentType
[src]

The associated error to be returned if derivation fails.

Derives an instance of Self from the incoming request metadata. Read more