Type Alias axio::Result

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

A specialized Result type with AxError as the error type.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AxError)

Contains the error value