我正在尝试创建一个 rust 的打印服务器,并在尝试发送 JSON 作为响应时遇到问题。
我在 Rocket 文档中发现发送 JSON 作为响应非常容易:您只需要使用 Serde 库。
不幸的是,这对我来说并不那么简单......
这是我当前的代码:
#[derive(Serialize,Deserialize)]
pub struct Printers {
pub printers: Vec<Printer>,
}
#[derive(Serialize,Deserialize)]
pub struct Printer {
pub device_type: String,
pub uid: String,
pub provider: String,
pub name: String,
pub connection: String,
pub version: u8,
pub manufacturer: String,
}
/**
* Here is my main problem
* -> I want to send back the Printers Object as a JSON
*/
#[get("/printers")]
fn printers(key: ApiKey<'_>) -> Json<Printers> {
let resp = crate::get_printers::get();
Json(resp)
}
这是错误代码:
--> src/order_route.rs:25:33
|
25 | fn printers(key: ApiKey<'_>) -> Json<Printers> {
| ^^^^^^^^^^^^^^ the trait `Responder<'_, '_>` is not implemented for `rocket_contrib::json::Json<order_route::Printers>`
|
note: required by `route::handler::<impl Outcome<rocket::Response<'o>, Status, rocket::Data<'o>>>::from`
--> ********/.cargo/registry/src/github.com-1ecc6299db9ec823/rocket-0.5.0-rc.1/src/route/handler.rs:188:5
|
188 | pub fn from<R: Responder<'r, 'o>>(req: &'r Request<'_>, responder: R) -> Outcome<'r> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
看来我需trait
要这样做,但不知道如何创建它,如果有人可以帮助我找到解决方案,我将不胜感激。
[编辑]
这是 Cargo.toml 文件
[package]
name = "test"
version = "0.0.0"
edition = "2018"
[dependencies]
rocket = "0.5.0-rc.1"
reqwest = { version = "0.11", features = ["blocking", "json"] }
openssl = { version = "0.10", features = ["vendored"] }
json = "0.12.4"
serde = "1.0.127"
serde_json = "1.0.66"
[dependencies.rocket_contrib]
version = "0.4.10"
default-features = false
features = ["json"]
[workspace]
members = [
""
]
这是完整的堆栈跟踪
*****:~/*****/label-printer-server-rust/server$ cargo run
Compiling hello v0.0.0 (/home/*****/*****/label-printer-server-rust/server)
error[E0277]: the trait bound `rocket_contrib::json::Json<order_route::Printers>: Responder<'_, '_>` is not satisfied
--> src/order_route.rs:25:33
|
25 | fn printers(key: ApiKey<'_>) -> Json<Printers> {
| ^^^^^^^^^^^^^^ the trait `Responder<'_, '_>` is not implemented for `rocket_contrib::json::Json<order_route::Printers>`
|
note: required by `route::handler::<impl Outcome<rocket::Response<'o>, Status, rocket::Data<'o>>>::from`
--> /home/*****/.cargo/registry/src/github.com-1ecc6299db9ec823/rocket-0.5.0-rc.1/src/route/handler.rs:188:5
|
188 | pub fn from<R: Responder<'r, 'o>>(req: &'r Request<'_>, responder: R) -> Outcome<'r> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0308]: mismatched types
--> src/order_route.rs:27:10
|
27 | Json(resp)
| ^^^^ expected struct `order_route::Printers`, found enum `Result`
|
= note: expected struct `order_route::Printers`
found enum `Result<structures::Printers, Box<dyn StdError>>`
Some errors have detailed explanations: E0277, E0308.
For more information about an error, try `rustc --explain E0277`.
error: could not compile `hello` due to 2 previous errors