[−][src]Struct actix_web::web::Path
Extract typed information from the request's path.
Example
use actix_web::{web, App}; /// extract path info from "/{username}/{count}/index.html" url /// {username} - deserializes to a String /// {count} - - deserializes to a u32 fn index(info: web::Path<(String, u32)>) -> String { format!("Welcome {}! {}", info.0, info.1) } fn main() { let app = App::new().service( web::resource("/{username}/{count}/index.html") // <- define path parameters .route(web::get().to(index)) // <- register handler with `Path` 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::{web, App, Error}; #[derive(Deserialize)] struct Info { username: String, } /// extract `Info` from a path using serde fn index(info: web::Path<Info>) -> Result<String, Error> { Ok(format!("Welcome {}!", info.username)) } fn main() { let app = App::new().service( web::resource("/{username}/index.html") // <- define path parameters .route(web::get().to(index)) // <- use handler with Path` extractor ); }
Methods
impl<T> Path<T>
[src]
pub fn into_inner(self) -> T
[src]
Deconstruct to an inner value
Trait Implementations
impl<T> FromRequest for Path<T> where
T: DeserializeOwned,
[src]
T: DeserializeOwned,
Extract typed information from the request's path.
Example
use actix_web::{web, App}; /// extract path info from "/{username}/{count}/index.html" url /// {username} - deserializes to a String /// {count} - - deserializes to a u32 fn index(info: web::Path<(String, u32)>) -> String { format!("Welcome {}! {}", info.0, info.1) } fn main() { let app = App::new().service( web::resource("/{username}/{count}/index.html") // <- define path parameters .route(web::get().to(index)) // <- register handler with `Path` 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::{web, App, Error}; #[derive(Deserialize)] struct Info { username: String, } /// extract `Info` from a path using serde fn index(info: web::Path<Info>) -> Result<String, Error> { Ok(format!("Welcome {}!", info.username)) } fn main() { let app = App::new().service( web::resource("/{username}/index.html") // <- define path parameters .route(web::get().to(index)) // <- use handler with Path` extractor ); }
type Error = Error
The associated error which can be returned.
type Future = Result<Self, Error>
Future that resolves to a Self
type Config = PathConfig
Configuration for this extractor
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future
[src]
fn extract(req: &HttpRequest) -> Self::Future
[src]
fn configure<F>(f: F) -> Self::Config where
F: FnOnce(Self::Config) -> Self::Config,
[src]
F: FnOnce(Self::Config) -> Self::Config,
impl<T: Eq> Eq for Path<T>
[src]
impl<T> AsRef<T> for Path<T>
[src]
impl<T: PartialOrd> PartialOrd<Path<T>> for Path<T>
[src]
fn partial_cmp(&self, other: &Path<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Path<T>) -> bool
[src]
fn le(&self, other: &Path<T>) -> bool
[src]
fn gt(&self, other: &Path<T>) -> bool
[src]
fn ge(&self, other: &Path<T>) -> bool
[src]
impl<T: PartialEq> PartialEq<Path<T>> for Path<T>
[src]
impl<T: Ord> Ord for Path<T>
[src]
fn cmp(&self, other: &Path<T>) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<T> From<T> for Path<T>
[src]
impl<T> Deref for Path<T>
[src]
impl<T> DerefMut for Path<T>
[src]
impl<T: Debug> Debug for Path<T>
[src]
impl<T: Display> Display for Path<T>
[src]
Auto Trait Implementations
impl<T> Send for Path<T> where
T: Send,
T: Send,
impl<T> Unpin for Path<T> where
T: Unpin,
T: Unpin,
impl<T> Sync for Path<T> where
T: Sync,
T: Sync,
impl<T> UnwindSafe for Path<T> where
T: UnwindSafe,
T: UnwindSafe,
impl<T> RefUnwindSafe for Path<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> 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, U> TryInto<U> 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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Erased for T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,
fn vzip(self) -> V
impl<T, A, P> Access<T> for P where
A: Access<T>,
P: Deref<Target = A>,
[src]
A: Access<T>,
P: Deref<Target = A>,
type Guard = <A as Access<T>>::Guard
A guard object containing the value and keeping it alive. Read more
fn load(&self) -> <P as Access<T>>::Guard
[src]
impl<T, A> DynAccess<T> for A where
A: Access<T>,
<A as Access<T>>::Guard: 'static,
[src]
A: Access<T>,
<A as Access<T>>::Guard: 'static,