[][src]Struct treemux::Params

pub struct Params(pub Vec<Param>);

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.get("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 get<K: AsRef<str>>(&self, name: K) -> 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<P: Into<Param>>(&mut self, p: P)[src]

Inserts a URL parameter into the vector

pub fn len(&self) -> usize[src]

Trait Implementations

impl Clone for Params[src]

impl Debug for Params[src]

impl<'a> Default for Params[src]

impl<'a, 'b> FromIterator<(&'a Cow<'b, str>, &'a Cow<'b, str>)> for Params where
    'b: 'a, 
[src]

impl<'a> FromIterator<(&'a str, &'a str)> for Params[src]

impl<'a> FromIterator<(Cow<'a, str>, Cow<'a, str>)> for Params[src]

impl<'a> Index<usize> for Params[src]

type Output = Param

The returned type after indexing.

impl<'a> 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.