1
0
mirror of https://github.com/actix/actix-website synced 2025-04-04 13:48:04 +02:00
2023-03-13 17:59:23 +00:00

24 lines
490 B
Rust

// <helpers>
use actix_web::{error, get, App, HttpServer};
#[derive(Debug)]
struct MyError {
name: &'static str,
}
#[get("/")]
async fn index() -> actix_web::Result<String> {
let result = Err(MyError { name: "test error" });
result.map_err(|err| error::ErrorBadRequest(err.name))
}
// </helpers>
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| App::new().service(index))
.bind(("127.0.0.1", 8080))?
.run()
.await
}