[−][src]Struct actix_web::Path
Extract typed information from the request's path.
Example
use actix_web::{http, App, Path, Result}; /// extract path info from "/{username}/{count}/index.html" url /// {username} - deserializes to a String /// {count} - - deserializes to a u32 fn index(info: Path<(String, u32)>) -> Result<String> { Ok(format!("Welcome {}! {}", info.0, info.1)) } fn main() { let app = App::new().resource( "/{username}/{count}/index.html", // <- define path parameters |r| r.method(http::Method::GET).with(index), ); // <- use `with` extractor }
It is possible to extract path information to a specific type that
implements Deserialize trait from serde.
#[macro_use] extern crate serde_derive; use actix_web::{http, App, Path, Result}; #[derive(Deserialize)] struct Info { username: String, } /// extract path info using serde fn index(info: Path<Info>) -> Result<String> { Ok(format!("Welcome {}!", info.username)) } fn main() { let app = App::new().resource( "/{username}/index.html", // <- define path parameters |r| r.method(http::Method::GET).with(index), ); // <- use `with` extractor }
Methods
impl<T> Path<T>[src]
impl<T> Path<T>pub fn into_inner(self) -> T[src]
pub fn into_inner(self) -> TDeconstruct to an inner value
Trait Implementations
impl<T, S> FromRequest<S> for Path<T> where
T: DeserializeOwned, [src]
impl<T, S> FromRequest<S> for Path<T> where
T: DeserializeOwned, type Config = ()
Configuration for conversion process
type Result = Result<Self, Error>
Future that resolves to a Self
fn from_request(req: &HttpRequest<S>, _: &Self::Config) -> Self::Result[src]
fn from_request(req: &HttpRequest<S>, _: &Self::Config) -> Self::ResultConvert request to a Self
fn extract(req: &HttpRequest<S>) -> Self::Result[src]
fn extract(req: &HttpRequest<S>) -> Self::ResultConvert request to a Self Read more
impl<T> AsRef<T> for Path<T>[src]
impl<T> AsRef<T> for Path<T>impl<T: PartialOrd> PartialOrd<Path<T>> for Path<T>[src]
impl<T: PartialOrd> PartialOrd<Path<T>> for Path<T>fn partial_cmp(&self, other: &Path<T>) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Path<T>) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Path<T>) -> bool[src]
fn lt(&self, other: &Path<T>) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Path<T>) -> bool[src]
fn le(&self, other: &Path<T>) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Path<T>) -> bool[src]
fn gt(&self, other: &Path<T>) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Path<T>) -> bool[src]
fn ge(&self, other: &Path<T>) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<T: PartialEq> PartialEq<Path<T>> for Path<T>[src]
impl<T: PartialEq> PartialEq<Path<T>> for Path<T>fn eq(&self, other: &Path<T>) -> bool[src]
fn eq(&self, other: &Path<T>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Path<T>) -> bool[src]
fn ne(&self, other: &Path<T>) -> boolThis method tests for !=.
impl<T: Ord> Ord for Path<T>[src]
impl<T: Ord> Ord for Path<T>fn cmp(&self, other: &Path<T>) -> Ordering[src]
fn cmp(&self, other: &Path<T>) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl<T> From<T> for Path<T>[src]
impl<T> From<T> for Path<T>impl<T: Eq> Eq for Path<T>[src]
impl<T: Eq> Eq for Path<T>impl<T: Display> Display for Path<T>[src]
impl<T: Display> Display for Path<T>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T: Debug> Debug for Path<T>[src]
impl<T: Debug> Debug for Path<T>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T> Deref for Path<T>[src]
impl<T> Deref for Path<T>type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T[src]
fn deref(&self) -> &TDereferences the value.
impl<T> DerefMut for Path<T>[src]
impl<T> DerefMut for Path<T>Auto Trait Implementations
Blanket Implementations
impl<T> ToString for T where
T: Display + ?Sized, [src]
impl<T> ToString for T where
T: Display + ?Sized, impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> Erased for T
impl<T> Erased for Timpl<Q, K> Equivalent for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
impl<Q, K> Equivalent for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, fn equivalent(&self, key: &K) -> bool[src]
fn equivalent(&self, key: &K) -> boolCompare self to key and return true if they are equal.