Trait serialize::Decodable [] [src]

pub trait Decodable: Sized {
    fn decode<D: Decoder>(d: &mut D) -> Result<Self, D::Error>;
}
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

Required Methods

fn decode<D: Decoder>(d: &mut D) -> Result<Self, D::Error>

Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

Implementors