无法在 Rust 中将结构编码为 JSON

Can't encode struct into JSON in Rust

我正在学习 Iron Web 框架教程,它看起来很简单,但我似乎无法将结构编码为 JSON。

extern crate iron;
extern crate rustc_serialize;

use iron::prelude::*;
use iron::status;
use rustc_serialize::json;

struct Greeting {
    msg: String,
}

fn main() {
    fn hello_world(_: &mut Request) -> IronResult<Response> {
        let greeting = Greeting { msg: "hello_world".to_string() };
        let payload = json::encode(&greeting).unwrap();
        // Ok(Response::with((status::Ok,payload)))
    }

    // Iron::new(hello_world).http("localhost:3000").unwrap();
}

我的Cargo.toml

[package]
name = "iron_init"
version = "0.1.0"
authors = ["mazbaig"]

[dependencies]
iron = "*"
rustc-serialize = "*"

我的错误:

error: the trait bound `Greeting: rustc_serialize::Encodable` is not satisfied [E0277]
        let payload = json::encode(&greeting).unwrap();
                      ^~~~~~~~~~~~
help: run `rustc --explain E0277` to see a detailed explanation
note: required by `rustc_serialize::json::encode`

我有点明白正确的类型没有传递到 json.encode() 函数中,但我无法弄清楚它想要我做什么。我可能遗漏了一些非常基本的东西。

您没有提供您正在使用的实际教程,但它似乎与 this one from brson.

相符
extern crate iron;
extern crate rustc_serialize;

use iron::prelude::*;
use iron::status;
use rustc_serialize::json;

#[derive(RustcEncodable)]
struct Greeting {
    msg: String
}

fn main() {
    fn hello_world(_: &mut Request) -> IronResult<Response> {
        let greeting = Greeting { msg: "Hello, World".to_string() };
        let payload = json::encode(&greeting).unwrap();
        Ok(Response::with((status::Ok, payload)))
    }

    Iron::new(hello_world).http("localhost:3000").unwrap();
    println!("On 3000");
}

注意到两者之间有什么不同吗?

#[derive(RustcEncodable)]
struct Greeting {
    msg: String
}

您必须指定 Encodable 特征已实现。在这种情况下,您可以通过导出 RustcEncodable.

来实现