1
0
mirror of https://github.com/actix/actix-website synced 2025-02-10 07:14:14 +01:00

31 lines
614 B
Rust
Raw Normal View History

2019-06-16 23:17:17 -04:00
// <path-two>
2019-06-28 13:31:30 -04:00
use actix_web::{web, Result};
2019-06-16 23:17:17 -04:00
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 {}, userid {}!", info.friend, info.userid))
2019-06-16 23:17:17 -04:00
}
pub fn main() {
2019-06-28 13:31:30 -04:00
use actix_web::{App, HttpServer};
2019-06-20 04:20:12 -04:00
HttpServer::new(|| {
App::new().route(
"/users/{userid}/{friend}", // <- define path parameters
web::get().to(index),
)
})
.bind("127.0.0.1:8088")
.unwrap()
.run()
.unwrap();
2019-06-16 23:17:17 -04:00
}
// </path-two>