the trait `std::convert::From<mongodb::error::Error>` is not implemented for `std::io::Error`
the trait `std::convert::From<mongodb::error::Error>` is not implemented for `std::io::Error`
尝试用 actix-web 和 mongodb 制作服务器。获取错误
the trait std::convert::From<mongodb::error::Error>
is not implemented for std::io::Error
这是我的代码
use actix_web::{web, App, HttpRequest, HttpServer, Responder};
use mongodb::{options::ClientOptions, Client};
async fn greet(req: HttpRequest) -> impl Responder {
let name = req.match_info().get("name").unwrap_or("World");
format!("Hello {}!", &name)
}
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
// Parse a connection string into an options struct.
let mut client_options = ClientOptions::parse("mongodb://localhost:27017")?;
// Manually set an option.
client_options.app_name = Some("My App".to_string());
// Get a handle to the deployment.
let client = Client::with_options(client_options)?;
// List the names of the databases in that deployment.
for db_name in client.list_database_names(None)? {
println!("{}", db_name);
}
HttpServer::new(|| {
App::new()
.route("/", web::get().to(greet))
.route("/{name}", web::get().to(greet))
})
.bind("127.0.0.1:8000")?
.run()
.await
}
我错过了什么吗?
意思是你调用的其中一个函数末尾有一个?
可以return一个mongodb::error::Error
。但是 main
的签名是 std::io::Result<()>
,这是隐含的 Result<(), std::io::Error>
。它可以接受的唯一错误类型是 io::Error,而不是 mongodb::Error.
看起来你转义的所有函数都可能return这个mongodb::error::Error
,所以你可以尝试将主签名更改为这样的结果:Result<(). mongodb::error::Error>
。
但我建议您对这些潜在错误进行适当的错误处理,因为这是您的 main().至少将 ?
更改为 .expect("Some error message");
。该程序仍然会崩溃,但它会以对您 有意义 的方式崩溃。
尝试用 actix-web 和 mongodb 制作服务器。获取错误
the trait
std::convert::From<mongodb::error::Error>
is not implemented forstd::io::Error
这是我的代码
use actix_web::{web, App, HttpRequest, HttpServer, Responder};
use mongodb::{options::ClientOptions, Client};
async fn greet(req: HttpRequest) -> impl Responder {
let name = req.match_info().get("name").unwrap_or("World");
format!("Hello {}!", &name)
}
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
// Parse a connection string into an options struct.
let mut client_options = ClientOptions::parse("mongodb://localhost:27017")?;
// Manually set an option.
client_options.app_name = Some("My App".to_string());
// Get a handle to the deployment.
let client = Client::with_options(client_options)?;
// List the names of the databases in that deployment.
for db_name in client.list_database_names(None)? {
println!("{}", db_name);
}
HttpServer::new(|| {
App::new()
.route("/", web::get().to(greet))
.route("/{name}", web::get().to(greet))
})
.bind("127.0.0.1:8000")?
.run()
.await
}
我错过了什么吗?
意思是你调用的其中一个函数末尾有一个?
可以return一个mongodb::error::Error
。但是 main
的签名是 std::io::Result<()>
,这是隐含的 Result<(), std::io::Error>
。它可以接受的唯一错误类型是 io::Error,而不是 mongodb::Error.
看起来你转义的所有函数都可能return这个mongodb::error::Error
,所以你可以尝试将主签名更改为这样的结果:Result<(). mongodb::error::Error>
。
但我建议您对这些潜在错误进行适当的错误处理,因为这是您的 main().至少将 ?
更改为 .expect("Some error message");
。该程序仍然会崩溃,但它会以对您 有意义 的方式崩溃。