1
0
mirror of https://github.com/actix/actix-website synced 2025-02-02 12:19:04 +01:00

29 lines
563 B
Rust
Raw Normal View History

pub mod json_two;
pub mod manual;
pub mod multipart;
pub mod streaming;
pub mod urlencoded;
2019-06-26 01:27:17 -04:00
2019-06-17 14:34:23 -04:00
// <json-request>
2019-06-26 01:27:17 -04:00
use actix_web::{web, App, HttpServer, Result};
2019-06-17 14:34:23 -04:00
use serde::Deserialize;
#[derive(Deserialize)]
struct Info {
username: String,
}
/// extract `Info` using serde
fn index(info: web::Json<Info>) -> Result<String> {
Ok(format!("Welcome {}!", info.username))
}
fn main() {
2019-06-26 01:27:17 -04:00
HttpServer::new(|| App::new().route("/", web::post().to(index)))
.bind("127.0.0.1:8088")
.unwrap()
.run()
.unwrap();
2019-06-17 14:34:23 -04:00
}
// </json-request>