2019-06-19 00:20:50 -04:00
|
|
|
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>
|