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]

[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");

[src]

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

[src]

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

[src]

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 : /

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

Content-Type for : /

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

Content-Type for : / ; =

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

Content-Type for : / ; =

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : / ; =

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

Content-Type for : /

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

Content-Type for : / ; =

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

Content-Type for : / ; =

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

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

Content-Type for : /

Methods from Deref<Target = MediaType>

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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]

[src]

Formats the value using the given formatter.

impl Clone for ContentType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ContentType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Hash for ContentType
[src]

[src]

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

1.3.0
[src]

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

impl Default for ContentType
[src]

[src]

Returns a ContentType of Any, or */*.

impl Deref for ContentType
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl FromStr for ContentType
[src]

The associated error which can be returned from parsing.

[src]

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]

[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.

[src]

Performs the conversion.

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

The associated error to be returned if derivation fails.

[src]

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