actix_webのmain関数でstd::io::Result<()>を戻り値として指定するのはなぜでしょうか?
rust
1#[actix_web::main] 2async fn main() -> std::io::Result<()> { 3 HttpServer::new(|| { 4 App::new() 5 .service(hello) 6 .service(echo) 7 .route("/hey", web::get().to(manual_hello)) 8 }) 9 .bind("127.0.0.1:8080")? 10 .run() 11 .await 12}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/08/06 03:39 編集
2021/08/06 04:25 編集
退会済みユーザー
2021/08/06 05:10