エラーのハンドリング定義を追加します。
使用するクレートはthiserrorを使用します。
[package]
name = "todo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = { version = "4.1" }
actix-rt = { version = "2.7" }
thiserror = { version = "1.0" }
use actix_web::{get, App, HttpResponse, HttpServer, ResponseError};
use thiserror::Error;
#[derive(Error, Debug)]
enum MyError {}
impl ResponseError for MyError {}
#[get("/")]
async fn index() -> Result<HttpResponse, MyError> {
let response_body = "Hello world";
Ok(HttpResponse::Ok().body(response_body))
}
#[actix_rt::main]
async fn main() -> Result<(), actix_web::Error> {
HttpServer::new(move || App::new().service(index))
.bind("0.0.0.0:8080")?
.run()
.await?;
Ok(())
}
この様にMyError等の形にすれば、エラー内容によってことなるエラー型を扱う様にすることができます。
「RUST勉強中、7/24の積み上げ」への1件のフィードバック