我在使我的通用 InMemoryColumn<T> 可序列化时遇到问题。它提示 'Encodable' 和 'Decodable' 特性是私有(private)的,但我看到它是公共(public)的 here 。我如何实现这些特征,以便我可以编码和解码底层 Vec<T>

这是带有导入的代码:

extern crate bincode;
extern crate libc;
extern crate "rustc-serialize" as rustc_serialize;

use rustc_serialize::serialize::{Encodable,Decodable};
//import other libs

pub struct InMemoryColumn<T> {
    name: String,
    data: Vec<T>,
}

impl<T: Eq + Ord + Hash + Encodable + Decodable> InMemoryColumn<T> {
    fn save(&self, tbl_name: &str) {
        //encode self.data and write to disk
    }

    fn load(path: &str, name: &str) -> Result<InMemoryColumn<T>,String> {
        //decode from disk and populate InMemoryColumn<T>
    }
}

最佳答案

EncodableDecodable 特征仅相对于 serialize 模块是公开的。 That module is private though 。正如您在 mod.rs file 中所见,EncodableDecodable 直接在 rustc_serialize 箱中重新导出。因此,您可以使用 EncodableDecodable 特性,如下所示:

use rustc_serialize::{Encodable,Decodable};

关于rust - 特性 `Encodable` 是私有(private)的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29121993/

10-12 20:09