pub type RvmResult<T> = Result<T, RvmError>;
Shorthand result type for RVM operations.
pub enum RvmResult<T> { Ok(T), Err(RvmError), }
Contains the success value
Contains the error value