pub trait Decodable: Sized {
    fn decode(rlp: &Rlp<'_>) -> Result<Self, DecoderError>;
}
Expand description

RLP decodable trait

Required Methods

Decode a value from RLP bytes

Implementations on Foreign Types

Implementors