2019-06-16 23:17:17 -04:00
|
|
|
// <json-one>
|
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 {
|
|
|
|
username: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// deserialize `Info` from request's body
|
|
|
|
fn index(info: web::Json<Info>) -> Result<String> {
|
|
|
|
Ok(format!("Welcome {}!", info.username))
|
|
|
|
}
|
2019-06-20 04:20:12 -04:00
|
|
|
// </json-one>
|
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("/", web::post().to(index)))
|
|
|
|
.bind("127.0.0.1:8088")
|
|
|
|
.unwrap()
|
|
|
|
.run()
|
|
|
|
.unwrap();
|
2019-06-16 23:17:17 -04:00
|
|
|
}
|