Struct actix_web::web::Path[][src]

pub struct Path<T>(_);

Extract typed data from request path segments.

Use PathConfig to configure extraction process.

Examples

use actix_web::{get, web};

// extract path info from "/{name}/{count}/index.html" into tuple
// {name}  - deserialize a String
// {count} - deserialize a u32
#[get("/")]
async fn index(path: web::Path<(String, u32)>) -> String {
    let (name, count) = path.into_inner();
    format!("Welcome {}! {}", name, count)
}

Path segments also can be deserialized into any type that implements serde::Deserialize. Path segment labels will be matched with struct field names.

use actix_web::{get, web};
use serde::Deserialize;

#[derive(Deserialize)]
struct Info {
    name: String,
}

// extract `Info` from a path using serde
#[get("/")]
async fn index(info: web::Path<Info>) -> String {
    format!("Welcome {}!", info.name)
}

Implementations

impl<T> Path<T>[src]

pub fn into_inner(self) -> T[src]

Unwrap into inner T value.

Trait Implementations

impl<T> AsRef<T> for Path<T>[src]

impl<T: Debug> Debug for Path<T>[src]

impl<T> Deref for Path<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for Path<T>[src]

impl<T: Display> Display for Path<T>[src]

impl<T: Eq> Eq for Path<T>[src]

impl<T> From<T> for Path<T>[src]

impl<T> FromRequest for Path<T> where
    T: DeserializeOwned
[src]

See here for example of usage as an extractor.

type Error = Error

The associated error which can be returned.

type Future = Ready<Result<Self, Error>>

Future that resolves to a Self.

type Config = PathConfig

Configuration for this extractor.

impl<T: Ord> Ord for Path<T>[src]

impl<T: PartialEq> PartialEq<Path<T>> for Path<T>[src]

impl<T: PartialOrd> PartialOrd<Path<T>> for Path<T>[src]

impl<T> StructuralEq for Path<T>[src]

impl<T> StructuralPartialEq for Path<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Path<T> where
    T: RefUnwindSafe

impl<T> Send for Path<T> where
    T: Send

impl<T> Sync for Path<T> where
    T: Sync

impl<T> Unpin for Path<T> where
    T: Unpin

impl<T> UnwindSafe for Path<T> where
    T: UnwindSafe

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<!> for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,