pub type Result<T, E = EvmError> = Result<T, E>;
Specialisation of std::Result.
std::Result
pub enum Result<T, E = EvmError> { Ok(T), Err(E), }
Contains the success value
Contains the error value