Struct rocket::http::hyper::mime::Mime [−][src]
pub struct Mime<T = Vec<(Attr, Value), Global>>(pub TopLevel, pub SubLevel, pub T)
where
T: AsRef<[(Attr, Value)]>;
Expand description
Mime, or Media Type. Encapsulates common registers types.
Consider that a traditional mime type contains a “top level type”, a “sub level type”, and 0-N “parameters”. And they’re all strings. Strings everywhere. Strings mean typos. Rust has type safety. We should use types!
So, Mime bundles together this data into types so the compiler can catch your typos.
This improves things so you use match without Strings:
use mime::{Mime, TopLevel, SubLevel}; let mime: Mime = "application/json".parse().unwrap(); match mime { Mime(TopLevel::Application, SubLevel::Json, _) => println!("matched json!"), _ => () }
Implementations
impl<P> Mime<P> where
P: AsRef<[(Attr, Value)]>,
[src]
impl<P> Mime<P> where
P: AsRef<[(Attr, Value)]>,
[src]Trait Implementations
impl<T> Ord for Mime<T> where
T: Ord + AsRef<[(Attr, Value)]>,
[src]
impl<T> Ord for Mime<T> where
T: Ord + AsRef<[(Attr, Value)]>,
[src]impl<LHS, RHS> PartialEq<Mime<RHS>> for Mime<LHS> where
LHS: AsRef<[(Attr, Value)]>,
RHS: AsRef<[(Attr, Value)]>,
[src]
impl<LHS, RHS> PartialEq<Mime<RHS>> for Mime<LHS> where
LHS: AsRef<[(Attr, Value)]>,
RHS: AsRef<[(Attr, Value)]>,
[src]impl<T> PartialOrd<Mime<T>> for Mime<T> where
T: PartialOrd<T> + AsRef<[(Attr, Value)]>,
[src]
impl<T> PartialOrd<Mime<T>> for Mime<T> where
T: PartialOrd<T> + AsRef<[(Attr, Value)]>,
[src]pub fn partial_cmp(&self, other: &Mime<T>) -> Option<Ordering>
[src]
pub fn partial_cmp(&self, other: &Mime<T>) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<T> Eq for Mime<T> where
T: Eq + AsRef<[(Attr, Value)]>,
[src]
T: Eq + AsRef<[(Attr, Value)]>,
impl<T> StructuralEq for Mime<T> where
T: AsRef<[(Attr, Value)]>,
[src]
T: AsRef<[(Attr, Value)]>,
Auto Trait Implementations
impl<T> RefUnwindSafe for Mime<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Mime<T> where
T: Send,
T: Send,
impl<T> Sync for Mime<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Mime<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Mime<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
pub fn equivalent(&self, key: &K) -> bool
[src]Compare self to key
and return true
if they are equal.
impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
pub fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
pub fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
Converts self
into a collection.
pub fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
F: FnMut(T) -> U,
A: Array<Item = U>,
F: FnMut(T) -> U,
A: Array<Item = U>,
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,