mirror of
https://github.com/actix/actix-website
synced 2025-02-13 00:25:35 +01:00
20517d415d
* Update to futures 0.3 * update examples/errors to actix-web 2.0
25 lines
528 B
Rust
25 lines
528 B
Rust
// <json-one>
|
|
use actix_web::{web, Result};
|
|
use serde::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
struct Info {
|
|
username: String,
|
|
}
|
|
|
|
/// deserialize `Info` from request's body
|
|
async fn index(info: web::Json<Info>) -> Result<String> {
|
|
Ok(format!("Welcome {}!", info.username))
|
|
}
|
|
// </json-one>
|
|
|
|
#[actix_rt::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
use actix_web::{App, HttpServer};
|
|
|
|
HttpServer::new(|| App::new().route("/", web::post().to(index)))
|
|
.bind("127.0.0.1:8088")?
|
|
.run()
|
|
.await
|
|
}
|