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

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. Extensions are matched case-insensitively.

Example

Recognized content types:

use rocket::http::ContentType;

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

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

Content-Type for any media type :

/

Content-Type for binary data : application / octet-stream

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

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

Content-Type for JSON : application / json

Content-Type for MessagePack : application / msgpack

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

Content-Type for JavaScript : application / javascript

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

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

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

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

Content-Type for PNG : image / png

Content-Type for GIF : image / gif

Content-Type for BMP : image / bmp

Content-Type for JPEG : image / jpeg

Content-Type for WEBP : image / webp

Content-Type for SVG : image / svg+xml

Content-Type for WEBM : video / webm

Content-Type for OGG : video / ogg

Content-Type for WAV : audio / wav

Content-Type for PDF : application / pdf

Content-Type for TTF : application / font-sfnt

Content-Type for OTF : application / font-sfnt

Content-Type for WOFF : application / font-woff

Content-Type for WOFF2 : font / woff2

Content-Type for WASM : application / wasm

Content-Type for JSON API : application / vnd.api+json

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 binary data , 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 WEBM , without considering parameters.

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

Returns true if self is the media type for WAV , 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 self is the media type for WASM , without considering parameters.

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

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

Trait Implementations

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

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

Returns a ContentType of Any, or */*.

impl PartialEq<ContentType> 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 Clone for ContentType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Deref for ContentType
[src]

The resulting type after dereferencing.

Dereferences the value.

impl Debug for ContentType
[src]

Formats the value using the given formatter. Read more

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

Auto Trait Implementations

impl Send for ContentType

impl Sync for ContentType

Blanket Implementations

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

Performs the conversion.

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

Converts the given value to a String. Read more

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

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Typeable for T where
    T: Any

Get the TypeId of this object.