1
0
mirror of https://github.com/actix/actix-website synced 2025-02-13 16:42:21 +01:00
2019-06-24 21:18:30 -04:00

26 lines
570 B
Rust

use actix_web::{web, App};
// <helpers>
use actix_web::{error, HttpRequest, Result};
#[derive(Debug)]
struct MyError {
name: &'static str,
}
pub fn index(_req: HttpRequest) -> Result<&'static str> {
let result: Result<&'static str, MyError> = Err(MyError { name: "test error" });
Ok(result.map_err(|e| error::ErrorBadRequest(e.name))?)
}
// </helpers>
pub fn main() {
use actix_web::HttpServer;
HttpServer::new(|| App::new().route("/", web::get().to(index)))
.bind("127.0.0.1:8088")
.unwrap()
.run()
.unwrap();
}