[][src]Struct treemux::Params

pub struct Params(pub Vec<Param, Global>);

A Vec of Param returned by a route match. There are two ways to retrieve the value of a parameter:

  1. by the name of the parameter
 let user = params.by_name("user"); // defined by :user or *user
  1. by the index of the parameter. This way you can also get the name (key)
 let third_key = &params[2].key;   // the name of the 3rd parameter
 let third_value = &params[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]

type Output = Param

The returned type after indexing.

impl IndexMut<usize> for Params[src]

impl PartialEq<Params> for Params[src]

impl StructuralPartialEq for Params[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.