Struct websocket::header::ContentType [−][src]
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)])) );
Implementations
impl ContentType
[src]
pub fn json() -> ContentType
[src]
A constructor to easily create a Content-Type: application/json
header.
pub fn plaintext() -> ContentType
[src]
A constructor to easily create a Content-Type: text/plain; charset=utf-8
header.
pub fn html() -> ContentType
[src]
A constructor to easily create a Content-Type: text/html; charset=utf-8
header.
pub fn form_url_encoded() -> ContentType
[src]
A constructor to easily create a Content-Type: application/www-form-url-encoded
header.
pub fn jpeg() -> ContentType
[src]
A constructor to easily create a Content-Type: image/jpeg
header.
pub fn png() -> ContentType
[src]
A constructor to easily create a Content-Type: image/png
header.
Methods from Deref<Target = Mime<Vec<(Attr, Value), Global>>>
Trait Implementations
impl Clone for ContentType
[src]
pub fn clone(&self) -> ContentType
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ContentType
[src]
impl Deref for ContentType
[src]
type Target = Mime<Vec<(Attr, Value), Global>>
The resulting type after dereferencing.
pub fn deref(&self) -> &Mime<Vec<(Attr, Value), Global>>
[src]
impl DerefMut for ContentType
[src]
impl Display for ContentType
[src]
impl Header for ContentType
[src]
pub fn header_name() -> &'static str
[src]
pub fn parse_header(raw: &[Vec<u8, Global>]) -> Result<ContentType, Error>
[src]
impl HeaderFormat for ContentType
[src]
impl PartialEq<ContentType> for ContentType
[src]
pub fn eq(&self, other: &ContentType) -> bool
[src]
pub fn ne(&self, other: &ContentType) -> bool
[src]
impl StructuralPartialEq for ContentType
[src]
Auto Trait Implementations
impl RefUnwindSafe for ContentType
impl Send for ContentType
impl Sync for ContentType
impl Unpin for ContentType
impl UnwindSafe for ContentType
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> HeaderClone for T where
T: Sealed,
[src]
T: Sealed,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Typeable for T where
T: Any,
T: Any,