Trait bitcoin::consensus::encode::Decodable[][src]

pub trait Decodable: Sized {
    fn consensus_decode<D: Read>(d: 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