pub type EVMResultGeneric<T, DBError> = Result<T, EVMError<DBError>>;
Expand description
Generic result of EVM execution. Used to represent error and generic output.
Aliased Type§
enum EVMResultGeneric<T, DBError> {
Ok(T),
Err(EVMError<DBError>),
}