// use actix_web::{web, App, HttpServer, Result}; use serde::Deserialize; #[derive(Deserialize)] struct Info { username: String, } /// deserialize `Info` from request's body fn index(info: web::Json) -> Result { Ok(format!("Welcome {}!", info.username)) } // pub fn main() { HttpServer::new(|| App::new().route("/", web::post().to(index))) .bind("127.0.0.1:8088") .unwrap() .run() .unwrap(); }