我想序列化一个结构,将其打印到标准输出,从另一个程序中读取它并反序列化。我发现我可以使用serde条板箱和Bincode作为数据格式。
我想到了这个例子:
#[macro_use]
extern crate serde;
use bincode::{deserialize, serialize};
#[derive(Serialize, Deserialize)]
struct Entity {
x: f32,
y: f32,
}
#[derive(Serialize, Deserialize)]
struct World(Vec<Entity>);
fn main() {
let world = World(vec![Entity { x: 0.0, y: 4.0 }, Entity { x: 10.0, y: 20.5 }]);
let encoded: Vec<u8> = serialize(&world).unwrap();
println!("{:?}", encoded);
let decoded: World = deserialize(&encoded[..]).unwrap();
}
在Cargo.toml
中,我有:
[package]
name = "test"
version = "0.1.0"
edition = "2018"
[dependencies]
bincode = "1.1.4"
serde = { version = "1.0", features = ["derive"] }
但是令我困惑的是,即使我已经声明要使用edition = "2018"
,并且根据我的理解,这意味着如果我删除以下行,可以忽略extern crate serde;
:
#[macro_use]
extern crate serde;
我遇到多个错误,例如:
error: cannot find derive macro `Deserialize` in this scope
--> src/main.rs:3:21
|
3 | #[derive(Serialize, Deserialize)]
| ^^^^^^^^^^^
error: cannot find derive macro `Serialize` in this scope
--> src/main.rs:3:10
|
3 | #[derive(Serialize, Deserialize)]
| ^^^^^^^^^
error: cannot find derive macro `Deserialize` in this scope
--> src/main.rs:9:21
|
9 | #[derive(Serialize, Deserialize)]
| ^^^^^^^^^^^
error: cannot find derive macro `Serialize` in this scope
--> src/main.rs:9:10
|
9 | #[derive(Serialize, Deserialize)]
| ^^^^^^^^^
因此想知道何时或如何使用edition = "2018"
#[macro_use]
的使用使我想起了Python中的装饰器,可能是相同的逻辑在Rust中适用,还是正在进行使更多语言标准化的工作,以便在edition = "20XX
中使用{不需要{1}}吗?
#[macro_use]
我正在使用Rust 1.35.0。
答案 0 :(得分:2)
在2018版中,过程宏是与其他任何事物一样的项目,因此您必须将它们纳入范围:
use serde::{Serialize, Deserialize};