mirror of
https://github.com/actix/actix-website
synced 2025-02-10 15:24:15 +01:00
23 lines
441 B
Rust
23 lines
441 B
Rust
|
// <path-two>
|
||
|
use actix_web::{web, App, Result};
|
||
|
use serde::Deserialize;
|
||
|
|
||
|
#[derive(Deserialize)]
|
||
|
struct Info {
|
||
|
userid: u32,
|
||
|
friend: String,
|
||
|
}
|
||
|
|
||
|
/// extract path info using serde
|
||
|
fn index(info: web::Path<Info>) -> Result<String> {
|
||
|
Ok(format!("Welcome {}!", info.friend))
|
||
|
}
|
||
|
|
||
|
pub fn main() {
|
||
|
App::new().route(
|
||
|
"/users/{userid}/{friend}", // <- define path parameters
|
||
|
web::get().to(index),
|
||
|
);
|
||
|
}
|
||
|
// </path-two>
|