pub trait Decodable: Sized {
    fn consensus_decode<D: Read>(d: &mut D) -> Result<Self, Error>;
}
Expand description

Data which can be decoded in a consensus-consistent way.

Required Methods

Decode an object with a well-defined format.

Implementations on Foreign Types

Implementors