Struct mco_http::header::ContentType
source · 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.
ABNF
Content-Type = media-type
Example values
text/html; charset=ISO-8859-4
Examples
use mco_http::header::{Headers, ContentType};
use mco_http::mime::{Mime, TopLevel, SubLevel};
let mut headers = Headers::new();
headers.set(
ContentType(Mime(TopLevel::Text, SubLevel::Html, vec![]))
);use mco_http::header::{Headers, ContentType};
use mco_http::mime::{Mime, TopLevel, SubLevel, Attr, Value};
let mut headers = Headers::new();
headers.set(
ContentType(Mime(TopLevel::Application, SubLevel::Json,
vec![(Attr::Charset, Value::Utf8)]))
);Tuple Fields§
§0: MimeImplementations§
source§impl ContentType
impl ContentType
sourcepub fn json() -> ContentType
pub fn json() -> ContentType
A constructor to easily create a Content-Type: application/json header.
sourcepub fn plaintext() -> ContentType
pub fn plaintext() -> ContentType
A constructor to easily create a Content-Type: text/plain; charset=utf-8 header.
sourcepub fn html() -> ContentType
pub fn html() -> ContentType
A constructor to easily create a Content-Type: text/html; charset=utf-8 header.
sourcepub fn form_url_encoded() -> ContentType
pub fn form_url_encoded() -> ContentType
A constructor to easily create a Content-Type: application/www-form-url-encoded header.
sourcepub fn jpeg() -> ContentType
pub fn jpeg() -> ContentType
A constructor to easily create a Content-Type: image/jpeg header.
sourcepub fn png() -> ContentType
pub fn png() -> ContentType
A constructor to easily create a Content-Type: image/png header.
Methods from Deref<Target = Mime>§
Trait Implementations§
source§impl Clone for ContentType
impl Clone for ContentType
source§fn clone(&self) -> ContentType
fn clone(&self) -> ContentType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ContentType
impl Debug for ContentType
source§impl Deref for ContentType
impl Deref for ContentType
source§impl DerefMut for ContentType
impl DerefMut for ContentType
source§impl Display for ContentType
impl Display for ContentType
source§impl Header for ContentType
impl Header for ContentType
source§impl HeaderFormat for ContentType
impl HeaderFormat for ContentType
source§impl PartialEq for ContentType
impl PartialEq for ContentType
source§fn eq(&self, other: &ContentType) -> bool
fn eq(&self, other: &ContentType) -> bool
self and other values to be equal, and is used
by ==.