1
0
mirror of https://github.com/actix/actix-website synced 2025-03-16 05:02:45 +01:00

24 lines
457 B
Rust
Raw Normal View History

pub mod json_two;
pub mod manual;
pub mod multipart;
pub mod streaming;
pub mod urlencoded;
2019-06-17 14:34:23 -04:00
// <json-request>
use actix_web::{web, App, Result};
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() {
App::new().route("/index.html", web::post().to(index));
}
// </json-request>