Struct hyper::header::ContentType [−][src]
pub struct ContentType(pub Mime);
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 hyper::header::{Headers, ContentType}; use hyper::mime::{Mime, TopLevel, SubLevel}; let mut headers = Headers::new(); headers.set( ContentType(Mime(TopLevel::Text, SubLevel::Html, vec![])) );
use hyper::header::{Headers, ContentType}; use hyper::mime::{Mime, TopLevel, SubLevel, Attr, Value}; let mut headers = Headers::new(); headers.set( ContentType(Mime(TopLevel::Application, SubLevel::Json, vec![(Attr::Charset, Value::Utf8)])) );
Methods
impl ContentType
[src]
impl ContentType
pub fn json() -> ContentType
[src]
pub fn json() -> ContentType
A constructor to easily create a Content-Type: application/json; charset=utf-8
header.
pub fn plaintext() -> ContentType
[src]
pub fn plaintext() -> ContentType
A constructor to easily create a Content-Type: text/plain; charset=utf-8
header.
pub fn html() -> ContentType
[src]
pub fn html() -> ContentType
A constructor to easily create a Content-Type: text/html; charset=utf-8
header.
pub fn form_url_encoded() -> ContentType
[src]
pub fn form_url_encoded() -> ContentType
A constructor to easily create a Content-Type: application/www-form-url-encoded
header.
pub fn jpeg() -> ContentType
[src]
pub fn jpeg() -> ContentType
A constructor to easily create a Content-Type: image/jpeg
header.
pub fn png() -> ContentType
[src]
pub fn png() -> ContentType
A constructor to easily create a Content-Type: image/png
header.
Methods from Deref<Target = Mime>
Trait Implementations
impl Clone for ContentType
[src]
impl Clone for ContentType
fn clone(&self) -> ContentType
[src]
fn clone(&self) -> ContentType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for ContentType
[src]
impl Debug for ContentType
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl PartialEq for ContentType
[src]
impl PartialEq for ContentType
fn eq(&self, other: &ContentType) -> bool
[src]
fn eq(&self, other: &ContentType) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &ContentType) -> bool
[src]
fn ne(&self, other: &ContentType) -> bool
This method tests for !=
.
impl Deref for ContentType
[src]
impl Deref for ContentType
type Target = Mime
The resulting type after dereferencing.
fn deref(&self) -> &Mime
[src]
fn deref(&self) -> &Mime
Dereferences the value.
impl DerefMut for ContentType
[src]
impl DerefMut for ContentType
impl Header for ContentType
[src]
impl Header for ContentType
fn header_name() -> &'static str
[src]
fn header_name() -> &'static str
Returns the name of the header field this belongs to. Read more
fn parse_header(raw: &[Vec<u8>]) -> Result<Self>
[src]
fn parse_header(raw: &[Vec<u8>]) -> Result<Self>
Parse a header from a raw stream of bytes. Read more
impl HeaderFormat for ContentType
[src]
impl HeaderFormat for ContentType
fn fmt_header(&self, f: &mut Formatter) -> Result
[src]
fn fmt_header(&self, f: &mut Formatter) -> Result
Format a header to be output into a TcpStream. Read more
impl Display for ContentType
[src]
impl Display for ContentType
Auto Trait Implementations
impl Send for ContentType
impl Send for ContentType
impl Sync for ContentType
impl Sync for ContentType