logo

Struct actix_web::http::header::ContentType[][src]

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.

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-8
  • application/json

Examples

use actix_http::Response;
use actix_http::http::header::ContentType;

let mut builder = Response::Ok();
builder.set(
    ContentType::json()
);
use mime::TEXT_HTML;
use actix_http::Response;
use actix_http::http::header::ContentType;

let mut builder = Response::Ok();
builder.set(
    ContentType(TEXT_HTML)
);

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

A constructor to easily create a Content-Type: text/xml 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.

A constructor to easily create a Content-Type: application/octet-stream header.

Methods from Deref<Target = Mime>

Get the top level media type for this Mime.

Example
let mime = mime::TEXT_PLAIN;
assert_eq!(mime.type_(), "text");
assert_eq!(mime.type_(), mime::TEXT);

Get the subtype of this Mime.

Example
let mime = mime::TEXT_PLAIN;
assert_eq!(mime.subtype(), "plain");
assert_eq!(mime.subtype(), mime::PLAIN);

Get an optional +suffix for this Mime.

Example
let svg = "image/svg+xml".parse::<mime::Mime>().unwrap();
assert_eq!(svg.suffix(), Some(mime::XML));
assert_eq!(svg.suffix().unwrap(), "xml");


assert!(mime::TEXT_PLAIN.suffix().is_none());

Look up a parameter by name.

Example
let mime = mime::TEXT_PLAIN_UTF_8;
assert_eq!(mime.get_param(mime::CHARSET), Some(mime::UTF_8));
assert_eq!(mime.get_param("charset").unwrap(), "utf-8");
assert!(mime.get_param("boundary").is_none());

let mime = "multipart/form-data; boundary=ABCDEFG".parse::<mime::Mime>().unwrap();
assert_eq!(mime.get_param(mime::BOUNDARY).unwrap(), "ABCDEFG");

Returns an iterator over the parameters.

Return a &str of the Mime’s “essence”.

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

Parse a header

The type returned in the event of a conversion error.

Try to convert value to a Header value.

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

This method tests for !=.

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

Compare self to key and return true if they are equal.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

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

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

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more