pub trait Decodable: Sized {
    fn consensus_decode<R: Read + ?Sized>(r: &mut R) -> 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§