pub type AxVmResult<T = ()> = AxResult<T>;
Common AxVM result type.
pub enum AxVmResult<T = ()> { Ok(T), Err(AxError), }
Contains the success value
Contains the error value