1
0
mirror of https://github.com/actix/actix-website synced 2024-12-12 07:53:10 +01:00
actix-website/examples/extractors/src/path_one.rs

18 lines
459 B
Rust
Raw Normal View History

2019-06-17 05:17:17 +02:00
// <path-one>
use actix_web::{web, App, Result};
/// extract path info from "/users/{userid}/{friend}" url
/// {userid} - - deserializes to a u32
/// {friend} - deserializes to a String
fn index(info: web::Path<(u32, String)>) -> Result<String> {
Ok(format!("Welcome {}! {}", info.1, info.0))
}
pub fn main() {
App::new().route(
"/users/{userid}/{friend}", // <- define path parameters
web::get().to(index),
);
}
// </path-one>