[−][src]Struct rocket_http::QMediaType
A MediaType
with an associated quality value.
Methods
impl QMediaType
[src]
impl QMediaType
pub fn weight(&self) -> Option<f32>
[src]
pub fn weight(&self) -> Option<f32>
Retrieve the weight of the media type, if there is any.
Example
use rocket::http::{MediaType, QMediaType}; let q_type = QMediaType(MediaType::HTML, Some(0.3)); assert_eq!(q_type.weight(), Some(0.3));
pub fn weight_or(&self, default: f32) -> f32
[src]
pub fn weight_or(&self, default: f32) -> f32
Retrieve the weight of the media type or a given default value.
Example
use rocket::http::{MediaType, QMediaType}; let q_type = QMediaType(MediaType::HTML, Some(0.3)); assert_eq!(q_type.weight_or(0.9), 0.3); let q_type = QMediaType(MediaType::HTML, None); assert_eq!(q_type.weight_or(0.9), 0.9);
pub fn media_type(&self) -> &MediaType
[src]
pub fn media_type(&self) -> &MediaType
Borrow the internal MediaType
.
Example
use rocket::http::{MediaType, QMediaType}; let q_type = QMediaType(MediaType::HTML, Some(0.3)); assert_eq!(q_type.media_type(), &MediaType::HTML);
Methods from Deref<Target = MediaType>
pub fn top(&self) -> &UncasedStr
[src]
pub fn top(&self) -> &UncasedStr
Returns the top-level type for this media type. The return type,
UncasedStr
, has caseless equality comparison and hashing.
Example
use rocket::http::MediaType; let plain = MediaType::Plain; assert_eq!(plain.top(), "text"); assert_eq!(plain.top(), "TEXT"); assert_eq!(plain.top(), "Text");
pub fn sub(&self) -> &UncasedStr
[src]
pub fn sub(&self) -> &UncasedStr
Returns the subtype for this media type. The return type,
UncasedStr
, has caseless equality comparison and hashing.
Example
use rocket::http::MediaType; let plain = MediaType::Plain; assert_eq!(plain.sub(), "plain"); assert_eq!(plain.sub(), "PlaIN"); assert_eq!(plain.sub(), "pLaIn");
pub fn specificity(&self) -> u8
[src]
pub fn specificity(&self) -> u8
Returns a u8
representing how specific the top-level type and subtype
of this media type are.
The return value is either 0
, 1
, or 2
, where 2
is the most
specific. A 0
is returned when both the top and sublevel types are
*
. A 1
is returned when only one of the top or sublevel types is
*
, and a 2
is returned when neither the top or sublevel types are
*
.
Example
use rocket::http::MediaType; let mt = MediaType::Plain; assert_eq!(mt.specificity(), 2); let mt = MediaType::new("text", "*"); assert_eq!(mt.specificity(), 1); let mt = MediaType::Any; assert_eq!(mt.specificity(), 0);
pub fn exact_eq(&self, other: &MediaType) -> bool
[src]
pub fn exact_eq(&self, other: &MediaType) -> bool
Compares self
with other
and returns true
if self
and other
are exactly equal to each other, including with respect to their
parameters.
This is different from the PartialEq
implementation in that it
considers parameters. If PartialEq
returns false, this function is
guaranteed to return false. Similarly, if this function returns true
,
PartialEq
is guaranteed to return true. However, if PartialEq
returns true
, this function may or may not return true
.
Example
use rocket::http::MediaType; let plain = MediaType::Plain; let plain2 = MediaType::with_params("text", "plain", ("charset", "utf-8")); let just_plain = MediaType::new("text", "plain"); // The `PartialEq` implementation doesn't consider parameters. assert!(plain == just_plain); assert!(just_plain == plain2); assert!(plain == plain2); // While `exact_eq` does. assert!(!plain.exact_eq(&just_plain)); assert!(!plain2.exact_eq(&just_plain)); assert!(plain.exact_eq(&plain2));
pub fn params<'a>(
&'a self
) -> impl Iterator<Item = (&'a str, &'a str)> + 'a
[src]
pub fn params<'a>(
&'a self
) -> impl Iterator<Item = (&'a str, &'a str)> + 'a
Returns an iterator over the (key, value) pairs of the media type's parameter list. The iterator will be empty if the media type has no parameters.
Example
The MediaType::Plain
type has one parameter: charset=utf-8
:
use rocket::http::MediaType; let plain = MediaType::Plain; let plain_params: Vec<_> = plain.params().collect(); assert_eq!(plain_params, vec![("charset", "utf-8")]);
The MediaType::PNG
type has no parameters:
use rocket::http::MediaType; let png = MediaType::PNG; assert_eq!(png.params().count(), 0);
pub const Any: MediaType
[src]
pub const Binary: MediaType
[src]
pub const HTML: MediaType
[src]
pub const Plain: MediaType
[src]
pub const JSON: MediaType
[src]
pub const MsgPack: MediaType
[src]
pub const Form: MediaType
[src]
pub const JavaScript: MediaType
[src]
pub const CSS: MediaType
[src]
pub const FormData: MediaType
[src]
pub const XML: MediaType
[src]
pub const CSV: MediaType
[src]
pub const PNG: MediaType
[src]
pub const GIF: MediaType
[src]
pub const BMP: MediaType
[src]
pub const JPEG: MediaType
[src]
pub const WEBP: MediaType
[src]
pub const SVG: MediaType
[src]
pub const Icon: MediaType
[src]
pub const WEBM: MediaType
[src]
pub const WEBA: MediaType
[src]
pub const OGG: MediaType
[src]
pub const FLAC: MediaType
[src]
pub const WAV: MediaType
[src]
pub const PDF: MediaType
[src]
pub const TTF: MediaType
[src]
pub const OTF: MediaType
[src]
pub const WOFF: MediaType
[src]
pub const WOFF2: MediaType
[src]
pub const JsonApi: MediaType
[src]
pub const WASM: MediaType
[src]
pub const TIFF: MediaType
[src]
pub const AAC: MediaType
[src]
pub const Calendar: MediaType
[src]
pub const MPEG: MediaType
[src]
pub const TAR: MediaType
[src]
pub const GZIP: MediaType
[src]
pub const MOV: MediaType
[src]
pub const MP4: MediaType
[src]
pub const ZIP: MediaType
[src]
pub fn is_known(&self) -> bool
[src]
pub fn is_known(&self) -> bool
Returns true
if this MediaType is known to Rocket. In other words,
returns true
if there is an associated constant for self
.
pub fn is_any(&self) -> bool
[src]
pub fn is_any(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::Any
.
pub fn is_binary(&self) -> bool
[src]
pub fn is_binary(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::Binary
.
pub fn is_html(&self) -> bool
[src]
pub fn is_html(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::HTML
.
pub fn is_plain(&self) -> bool
[src]
pub fn is_plain(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::Plain
.
pub fn is_json(&self) -> bool
[src]
pub fn is_json(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::JSON
.
pub fn is_msgpack(&self) -> bool
[src]
pub fn is_msgpack(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::MsgPack
.
pub fn is_form(&self) -> bool
[src]
pub fn is_form(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::Form
.
pub fn is_javascript(&self) -> bool
[src]
pub fn is_javascript(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::JavaScript
.
pub fn is_css(&self) -> bool
[src]
pub fn is_css(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::CSS
.
pub fn is_form_data(&self) -> bool
[src]
pub fn is_form_data(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::FormData
.
pub fn is_xml(&self) -> bool
[src]
pub fn is_xml(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::XML
.
pub fn is_csv(&self) -> bool
[src]
pub fn is_csv(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::CSV
.
pub fn is_png(&self) -> bool
[src]
pub fn is_png(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::PNG
.
pub fn is_gif(&self) -> bool
[src]
pub fn is_gif(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::GIF
.
pub fn is_bmp(&self) -> bool
[src]
pub fn is_bmp(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::BMP
.
pub fn is_jpeg(&self) -> bool
[src]
pub fn is_jpeg(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::JPEG
.
pub fn is_webp(&self) -> bool
[src]
pub fn is_webp(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::WEBP
.
pub fn is_svg(&self) -> bool
[src]
pub fn is_svg(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::SVG
.
pub fn is_icon(&self) -> bool
[src]
pub fn is_icon(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::Icon
.
pub fn is_webm(&self) -> bool
[src]
pub fn is_webm(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::WEBM
.
pub fn is_weba(&self) -> bool
[src]
pub fn is_weba(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::WEBA
.
pub fn is_ogg(&self) -> bool
[src]
pub fn is_ogg(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::OGG
.
pub fn is_flac(&self) -> bool
[src]
pub fn is_flac(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::FLAC
.
pub fn is_wav(&self) -> bool
[src]
pub fn is_wav(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::WAV
.
pub fn is_pdf(&self) -> bool
[src]
pub fn is_pdf(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::PDF
.
pub fn is_ttf(&self) -> bool
[src]
pub fn is_ttf(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::TTF
.
pub fn is_otf(&self) -> bool
[src]
pub fn is_otf(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::OTF
.
pub fn is_woff(&self) -> bool
[src]
pub fn is_woff(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::WOFF
.
pub fn is_woff2(&self) -> bool
[src]
pub fn is_woff2(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::WOFF2
.
pub fn is_json_api(&self) -> bool
[src]
pub fn is_json_api(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::JsonApi
.
pub fn is_wasm(&self) -> bool
[src]
pub fn is_wasm(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::WASM
.
pub fn is_tiff(&self) -> bool
[src]
pub fn is_tiff(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::TIFF
.
pub fn is_aac(&self) -> bool
[src]
pub fn is_aac(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::AAC
.
pub fn is_ical(&self) -> bool
[src]
pub fn is_ical(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::Calendar
.
pub fn is_mpeg(&self) -> bool
[src]
pub fn is_mpeg(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::MPEG
.
pub fn is_tar(&self) -> bool
[src]
pub fn is_tar(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::TAR
.
pub fn is_gzip(&self) -> bool
[src]
pub fn is_gzip(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::GZIP
.
pub fn is_mov(&self) -> bool
[src]
pub fn is_mov(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::MOV
.
pub fn is_mp4(&self) -> bool
[src]
pub fn is_mp4(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::MP4
.
pub fn is_zip(&self) -> bool
[src]
pub fn is_zip(&self) -> bool
Returns true
if the top-level and sublevel types of self
are the same as those of MediaType::ZIP
.
Trait Implementations
impl PartialEq<QMediaType> for QMediaType
[src]
impl PartialEq<QMediaType> for QMediaType
fn eq(&self, other: &QMediaType) -> bool
[src]
fn eq(&self, other: &QMediaType) -> bool
fn ne(&self, other: &QMediaType) -> bool
[src]
fn ne(&self, other: &QMediaType) -> bool
impl From<MediaType> for QMediaType
[src]
impl From<MediaType> for QMediaType
fn from(media_type: MediaType) -> QMediaType
[src]
fn from(media_type: MediaType) -> QMediaType
impl Clone for QMediaType
[src]
impl Clone for QMediaType
fn clone(&self) -> QMediaType
[src]
fn clone(&self) -> QMediaType
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 QMediaType
[src]
impl Debug for QMediaType
impl Deref for QMediaType
[src]
impl Deref for QMediaType
Auto Trait Implementations
impl Send for QMediaType
impl Send for QMediaType
impl Sync for QMediaType
impl Sync for QMediaType
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, 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> Typeable for T where
T: Any,
[src]
impl<T> Typeable for T where
T: Any,