RLPResult

Type Alias RLPResult 

Source
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(DecodeError)

Contains the error value