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

Data which can be encoded in a consensus-consistent way

Required Methods

Decode an object with a well-defined format

Implementations on Foreign Types

Implementors