pub type RLPResult<T> = Result<T, RLPError>;Expand description
Convenience alias for a result of fallible RLP decoding.
Aliased Type§
pub enum RLPResult<T> {
Ok(T),
Err(DecodeError),
}pub type RLPResult<T> = Result<T, RLPError>;Convenience alias for a result of fallible RLP decoding.
pub enum RLPResult<T> {
Ok(T),
Err(DecodeError),
}