Type Alias arceos_api::AxResult

pub type AxResult<T = ()> = Result<T, AxError>;
Expand description

A specialized Result type with AxError as the error type.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AxError)

Contains the error value