无法在Rust中将struct编码为JSON

时间:2016-07-24 19:38:34

标签: rust rustc-serialize

我正在关注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()函数,但是我无法弄清楚它对我的要求。我可能错过了一些非常基本的东西。

1 个答案:

答案 0 :(得分:4)

您没有提供正在使用的实际教程,但似乎与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

来实现