[][src]Struct actix_web::dev::Params

pub struct Params { /* fields omitted */ }

Route match information

If resource path contains variable patterns, Params stores this variables.

Methods

impl Params[src]

pub fn is_empty(&self) -> bool[src]

Check if there are any matched patterns

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

Check number of extracted parameters

pub fn get(&self, key: &str) -> Option<&str>[src]

Get matched parameter by name without type conversion

pub fn unprocessed(&self) -> &str[src]

Get unprocessed part of path

pub fn query<T: FromParam>(&self, key: &str) -> Result<T, <T as FromParam>::Err>[src]

Get matched FromParam compatible parameter by name.

If keyed parameter is not available empty string is used as default value.

fn index(req: HttpRequest) -> Result<String> {
    let ivalue: isize = req.match_info().query("val")?;
    Ok(format!("isuze value: {:?}", ivalue))
}

pub fn iter(&self) -> ParamsIter[src]

Return iterator to items in parameter container

Trait Implementations

impl Clone for Params[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Params[src]

impl<'a> Index<&'a str> for Params[src]

type Output = str

The returned type after indexing.

impl Index<usize> for Params[src]

type Output = str

The returned type after indexing.

Auto Trait Implementations

impl !Send for Params

impl !Sync for Params

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> Erased for T