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 hyper::header::{Headers, ContentType};
let mut headers = Headers::new();
headers.set(
ContentType::json()
);
use hyper::header::{Headers, ContentType};
use hyper::mime;
let mut headers = Headers::new();
headers.set(
ContentType(mime::TEXT_HTML)
);
Tuple Fields§
§0: Mime
Implementations§
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 text() -> ContentType
pub fn text() -> ContentType
A constructor to easily create a Content-Type: text/plain
header.
Sourcepub fn text_utf8() -> ContentType
pub fn text_utf8() -> 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
header.
Sourcepub fn xml() -> ContentType
pub fn xml() -> ContentType
A constructor to easily create a Content-Type: text/xml
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.
Sourcepub fn octet_stream() -> ContentType
pub fn octet_stream() -> ContentType
A constructor to easily create a Content-Type: application/octet-stream
header.
Methods from Deref<Target = Mime>§
Sourcepub fn type_(&self) -> Name<'_>
pub fn type_(&self) -> Name<'_>
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);
Sourcepub fn subtype(&self) -> Name<'_>
pub fn subtype(&self) -> Name<'_>
Get the subtype of this Mime
.
§Example
let mime = mime::TEXT_PLAIN;
assert_eq!(mime.subtype(), "plain");
assert_eq!(mime.subtype(), mime::PLAIN);
Sourcepub fn suffix(&self) -> Option<Name<'_>>
pub fn suffix(&self) -> Option<Name<'_>>
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());
Sourcepub fn get_param<'a, N>(&'a self, attr: N) -> Option<Name<'a>>
pub fn get_param<'a, N>(&'a self, attr: N) -> Option<Name<'a>>
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");
Sourcepub fn essence_str(&self) -> &str
pub fn essence_str(&self) -> &str
Return a &str
of the Mime’s “essence”.
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 PartialEq for ContentType
impl PartialEq for ContentType
impl Eq for ContentType
impl StructuralPartialEq for ContentType
Auto Trait Implementations§
impl Freeze for ContentType
impl RefUnwindSafe for ContentType
impl Send for ContentType
impl Sync for ContentType
impl Unpin for ContentType
impl UnwindSafe for ContentType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)