Skip to main content

AxVmResult

Type Alias AxVmResult 

Source
pub type AxVmResult<T = ()> = AxResult<T>;
Expand description

Common AxVM result type.

Aliased Type§

pub enum AxVmResult<T = ()> {
    Ok(T),
    Err(AxError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AxError)

Contains the error value