pub type VmResult<T> = Result<T, VmError>;👎Deprecated:
Use Result<T, VmError> directly instead.
Expand description
A result produced by the virtual machine.
Aliased Type§
pub enum VmResult<T> {
Ok(T),
Err(VmError),
}