pub type RLPResult<T> = Result<T, RLPError>;
Convenience alias for a result of fallible RLP decoding.
pub enum RLPResult<T> { Ok(T), Err(DecodeError), }
Contains the success value
Contains the error value