pub type VmResult<T> = Result<T, RuntimeError>;
pub enum VmResult<T> { Ok(T), Err(RuntimeError), }
Contains the success value
Contains the error value