[−][src]Struct httprouter::Params
A Vec of Param returned by a route match.
There are two ways to retrieve the value of a parameter:
- by the name of the parameter
let user = params.by_name("user"); // defined by :user or *user
- by the index of the parameter. This way you can also get the name (key)
let third_key = ¶ms[2].key; // the name of the 3rd parameter let third_value = ¶ms[2].value; // the value of the 3rd parameter
Implementations
impl Params[src]
pub fn by_name(&self, name: &str) -> Option<&str>[src]
Returns the value of the first Param whose key matches the given name.
pub fn is_empty(&self) -> bool[src]
pub fn push(&mut self, p: Param)[src]
Inserts a URL parameter into the vector
Trait Implementations
impl Debug for Params[src]
impl Default for Params[src]
impl Index<usize> for Params[src]
impl IndexMut<usize> for Params[src]
impl PartialEq<Params> for Params[src]
impl StructuralPartialEq for Params[src]
Auto Trait Implementations
impl RefUnwindSafe for Params[src]
impl Send for Params[src]
impl Sync for Params[src]
impl Unpin for Params[src]
impl UnwindSafe for Params[src]
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> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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>,