Enum rocket::http::uri::fmt::Query

source ·
pub enum Query {}
Expand description

Marker type indicating use of a type for the query Part of a URI.

In route URIs, this corresponds to all of the text after a ?, if any.

#[get("/home/<name>/<page>?<item>&<form..>")]
                           ^-------------- Query

Trait Implementations§

source§

impl Clone for Query

source§

fn clone(&self) -> Query

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Query

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a, K, V, A, B> FromUriParam<Query, &'a BTreeMap<A, B, Global>> for BTreeMap<K, V, Global>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = &'a BTreeMap<A, B, Global>

The resulting type of this conversion.
source§

fn from_uri_param( param: &'a BTreeMap<A, B, Global> ) -> <BTreeMap<K, V, Global> as FromUriParam<Query, &'a BTreeMap<A, B, Global>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, K, V, A, B> FromUriParam<Query, &'a BTreeMap<A, B, Global>> for HashMap<K, V, RandomState>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = &'a BTreeMap<A, B, Global>

The resulting type of this conversion.
source§

fn from_uri_param( param: &'a BTreeMap<A, B, Global> ) -> <HashMap<K, V, RandomState> as FromUriParam<Query, &'a BTreeMap<A, B, Global>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, K, V, A, B> FromUriParam<Query, &'a HashMap<A, B, RandomState>> for BTreeMap<K, V, Global>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = &'a HashMap<A, B, RandomState>

The resulting type of this conversion.
source§

fn from_uri_param( param: &'a HashMap<A, B, RandomState> ) -> <BTreeMap<K, V, Global> as FromUriParam<Query, &'a HashMap<A, B, RandomState>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, K, V, A, B> FromUriParam<Query, &'a HashMap<A, B, RandomState>> for HashMap<K, V, RandomState>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = &'a HashMap<A, B, RandomState>

The resulting type of this conversion.
source§

fn from_uri_param( param: &'a HashMap<A, B, RandomState> ) -> <HashMap<K, V, RandomState> as FromUriParam<Query, &'a HashMap<A, B, RandomState>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, T: Serialize> FromUriParam<Query, &'a T> for Json<T>

Available on crate feature json only.
§

type Target = Json<&'a T>

The resulting type of this conversion.
source§

fn from_uri_param(param: &'a T) -> Self::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, K, V, A, B> FromUriParam<Query, &'a mut BTreeMap<A, B, Global>> for BTreeMap<K, V, Global>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = &'a BTreeMap<A, B, Global>

The resulting type of this conversion.
source§

fn from_uri_param( param: &'a mut BTreeMap<A, B, Global> ) -> <BTreeMap<K, V, Global> as FromUriParam<Query, &'a mut BTreeMap<A, B, Global>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, K, V, A, B> FromUriParam<Query, &'a mut BTreeMap<A, B, Global>> for HashMap<K, V, RandomState>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = &'a BTreeMap<A, B, Global>

The resulting type of this conversion.
source§

fn from_uri_param( param: &'a mut BTreeMap<A, B, Global> ) -> <HashMap<K, V, RandomState> as FromUriParam<Query, &'a mut BTreeMap<A, B, Global>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, K, V, A, B> FromUriParam<Query, &'a mut HashMap<A, B, RandomState>> for BTreeMap<K, V, Global>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = &'a HashMap<A, B, RandomState>

The resulting type of this conversion.
source§

fn from_uri_param( param: &'a mut HashMap<A, B, RandomState> ) -> <BTreeMap<K, V, Global> as FromUriParam<Query, &'a mut HashMap<A, B, RandomState>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, K, V, A, B> FromUriParam<Query, &'a mut HashMap<A, B, RandomState>> for HashMap<K, V, RandomState>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = &'a HashMap<A, B, RandomState>

The resulting type of this conversion.
source§

fn from_uri_param( param: &'a mut HashMap<A, B, RandomState> ) -> <HashMap<K, V, RandomState> as FromUriParam<Query, &'a mut HashMap<A, B, RandomState>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'a, T: Serialize> FromUriParam<Query, &'a mut T> for Json<T>

Available on crate feature json only.
§

type Target = Json<&'a mut T>

The resulting type of this conversion.
source§

fn from_uri_param(param: &'a mut T) -> Self::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'x, T: Serialize> FromUriParam<Query, &'x Json<T>> for Json<T>

Available on crate feature json only.
§

type Target = &'x Json<T>

The resulting type of this conversion.
source§

fn from_uri_param(param: &'x Json<T>) -> &'x Json<T>

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'x, T: Serialize> FromUriParam<Query, &'x mut Json<T>> for Json<T>

Available on crate feature json only.
§

type Target = &'x mut Json<T>

The resulting type of this conversion.
source§

fn from_uri_param(param: &'x mut Json<T>) -> &'x mut Json<T>

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'f, A, T: FromUriParam<Query, A> + FromForm<'f>> FromUriParam<Query, A> for Lenient<T>

§

type Target = <T as FromUriParam<Query, A>>::Target

The resulting type of this conversion.
source§

fn from_uri_param(param: A) -> Self::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<'f, A, T: FromUriParam<Query, A> + FromForm<'f>> FromUriParam<Query, A> for Strict<T>

§

type Target = <T as FromUriParam<Query, A>>::Target

The resulting type of this conversion.
source§

fn from_uri_param(param: A) -> Self::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<K, V, A, B> FromUriParam<Query, BTreeMap<A, B, Global>> for BTreeMap<K, V, Global>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = BTreeMap<A, B, Global>

The resulting type of this conversion.
source§

fn from_uri_param( param: BTreeMap<A, B, Global> ) -> <BTreeMap<K, V, Global> as FromUriParam<Query, BTreeMap<A, B, Global>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<K, V, A, B> FromUriParam<Query, BTreeMap<A, B, Global>> for HashMap<K, V, RandomState>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = BTreeMap<A, B, Global>

The resulting type of this conversion.
source§

fn from_uri_param( param: BTreeMap<A, B, Global> ) -> <HashMap<K, V, RandomState> as FromUriParam<Query, BTreeMap<A, B, Global>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<K, V, A, B> FromUriParam<Query, HashMap<A, B, RandomState>> for BTreeMap<K, V, Global>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = HashMap<A, B, RandomState>

The resulting type of this conversion.
source§

fn from_uri_param( param: HashMap<A, B, RandomState> ) -> <BTreeMap<K, V, Global> as FromUriParam<Query, HashMap<A, B, RandomState>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<K, V, A, B> FromUriParam<Query, HashMap<A, B, RandomState>> for HashMap<K, V, RandomState>where A: UriDisplay<Query>, K: FromUriParam<Query, A>, B: UriDisplay<Query>, V: FromUriParam<Query, B>,

§

type Target = HashMap<A, B, RandomState>

The resulting type of this conversion.
source§

fn from_uri_param( param: HashMap<A, B, RandomState> ) -> <HashMap<K, V, RandomState> as FromUriParam<Query, HashMap<A, B, RandomState>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<T: Serialize> FromUriParam<Query, Json<T>> for Json<T>

Available on crate feature json only.
§

type Target = Json<T>

The resulting type of this conversion.
source§

fn from_uri_param(param: Json<T>) -> Json<T>

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<A, T> FromUriParam<Query, Option<A>> for Option<T>where T: FromUriParam<Query, A>,

§

type Target = Option<<T as FromUriParam<Query, A>>::Target>

The resulting type of this conversion.
source§

fn from_uri_param( param: Option<A> ) -> <Option<T> as FromUriParam<Query, Option<A>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<A, E, T> FromUriParam<Query, Option<A>> for Result<T, E>where T: FromUriParam<Query, A>,

§

type Target = Option<<T as FromUriParam<Query, A>>::Target>

The resulting type of this conversion.
source§

fn from_uri_param( param: Option<A> ) -> <Result<T, E> as FromUriParam<Query, Option<A>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<A, E, T> FromUriParam<Query, Result<A, E>> for Option<T>where T: FromUriParam<Query, A>,

§

type Target = Result<<T as FromUriParam<Query, A>>::Target, E>

The resulting type of this conversion.
source§

fn from_uri_param( param: Result<A, E> ) -> <Option<T> as FromUriParam<Query, Result<A, E>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<A, E, T> FromUriParam<Query, Result<A, E>> for Result<T, E>where T: FromUriParam<Query, A>,

§

type Target = Result<<T as FromUriParam<Query, A>>::Target, E>

The resulting type of this conversion.
source§

fn from_uri_param( param: Result<A, E> ) -> <Result<T, E> as FromUriParam<Query, Result<A, E>>>::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<T: Serialize> FromUriParam<Query, T> for Json<T>

Available on crate feature json only.
§

type Target = Json<T>

The resulting type of this conversion.
source§

fn from_uri_param(param: T) -> Self::Target

Converts a value of type T into a value of type Self::Target. The resulting value of type Self::Target will be rendered into a URI using its UriDisplay implementation.
source§

impl<K, V> UriDisplay<Query> for BTreeMap<K, V, Global>where K: UriDisplay<Query>, V: UriDisplay<Query>,

source§

fn fmt(&self, f: &mut Formatter<'_, Query>) -> Result<(), Error>

Formats self in a URI-safe manner using the given formatter.
source§

impl<K, V> UriDisplay<Query> for HashMap<K, V, RandomState>where K: UriDisplay<Query>, V: UriDisplay<Query>,

source§

fn fmt(&self, f: &mut Formatter<'_, Query>) -> Result<(), Error>

Formats self in a URI-safe manner using the given formatter.
source§

impl<T: Serialize> UriDisplay<Query> for Json<T>

Available on crate feature json only.
source§

fn fmt(&self, f: &mut UriFormatter<'_, Query>) -> Result

Formats self in a URI-safe manner using the given formatter.
source§

impl<T> UriDisplay<Query> for Option<T>where T: UriDisplay<Query>,

Defers to the UriDisplay<Query> implementation for T.

source§

fn fmt(&self, f: &mut Formatter<'_, Query>) -> Result<(), Error>

Formats self in a URI-safe manner using the given formatter.
source§

impl<T, E> UriDisplay<Query> for Result<T, E>where T: UriDisplay<Query>,

Defers to the UriDisplay<Query> implementation for T.

source§

fn fmt(&self, f: &mut Formatter<'_, Query>) -> Result<(), Error>

Formats self in a URI-safe manner using the given formatter.
source§

impl<T> UriDisplay<Query> for Vec<T, Global>where T: UriDisplay<Query>,

source§

fn fmt(&self, f: &mut Formatter<'_, Query>) -> Result<(), Error>

Formats self in a URI-safe manner using the given formatter.
source§

impl Copy for Query

source§

impl<T> Ignorable<Query> for Option<T>

source§

impl<T, E> Ignorable<Query> for Result<T, E>

source§

impl Part for Query

Auto Trait Implementations§

§

impl RefUnwindSafe for Query

§

impl Send for Query

§

impl Sync for Query

§

impl Unpin for Query

§

impl UnwindSafe for Query

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T> AsTaggedExplicit<'a> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self>

§

impl<'a, T> AsTaggedImplicit<'a> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self>

source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoCollection<T> for T

source§

fn into_collection<A>(self) -> SmallVec<A>where A: Array<Item = T>,

Converts self into a collection.
source§

fn mapped<U, F, A>(self, f: F) -> SmallVec<A>where F: FnMut(T) -> U, A: Array<Item = U>,

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more