[−][src]Struct actix_web::dev::Params
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 get_decoded(&self, key: &str) -> Option<String>
[src]
Get URL-decoded 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(&self) -> 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]
impl Index<usize> for Params
[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.