[−][src]Struct rocket_http::hyper::header::ContentType
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
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<Vec<(Attr, Value)>>>
Trait Implementations
impl PartialEq<ContentType> for ContentType
[src]
impl PartialEq<ContentType> for ContentType
fn eq(&self, other: &ContentType) -> bool
[src]
fn eq(&self, other: &ContentType) -> bool
fn ne(&self, other: &ContentType) -> bool
[src]
fn ne(&self, other: &ContentType) -> bool
impl Display for ContentType
[src]
impl Display for ContentType
impl Debug for ContentType
[src]
impl Debug for ContentType
impl DerefMut for ContentType
[src]
impl DerefMut for ContentType
impl Clone for ContentType
[src]
impl Clone for ContentType
fn clone(&self) -> ContentType
[src]
fn clone(&self) -> ContentType
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 HeaderFormat for ContentType
[src]
impl HeaderFormat for ContentType
impl Deref for ContentType
[src]
impl Deref for ContentType
type Target = Mime<Vec<(Attr, Value)>>
The resulting type after dereferencing.
fn deref(&self) -> &Mime<Vec<(Attr, Value)>>
[src]
fn deref(&self) -> &Mime<Vec<(Attr, Value)>>
impl Header for ContentType
[src]
impl Header for ContentType
fn header_name() -> &'static str
[src]
fn header_name() -> &'static str
fn parse_header(raw: &[Vec<u8>]) -> Result<ContentType, Error>
[src]
fn parse_header(raw: &[Vec<u8>]) -> Result<ContentType, Error>
Auto Trait Implementations
impl Send for ContentType
impl Send for ContentType
impl Sync for ContentType
impl Sync for ContentType
Blanket Implementations
impl<T> IntoCollection for T
[src]
impl<T> IntoCollection for T
ⓘImportant traits for SmallVec<A>fn into_collection<A>(Self) -> SmallVec<A> where
A: Array<Item = T>,
[src]
fn into_collection<A>(Self) -> SmallVec<A> where
A: Array<Item = T>,
ⓘImportant traits for SmallVec<A>fn mapped<U, F, A>(Self, F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
[src]
fn mapped<U, F, A>(Self, F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
impl<T> ToString for T where
T: Display + ?Sized,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
impl<T, I> AsResult for T where
I: Input,
[src]
impl<T, I> AsResult for T where
I: Input,
impl<T> HeaderClone for T where
T: Sealed,
[src]
impl<T> HeaderClone for T where
T: Sealed,
impl<T> Typeable for T where
T: Any,
[src]
impl<T> Typeable for T where
T: Any,