ApexResult

Type Alias ApexResult 

Source
pub type ApexResult<T> = Result<T, ApexError>;
Expand description

Main result type used throughout the apex-solver library

Aliased Type§

pub enum ApexResult<T> {
    Ok(T),
    Err(ApexError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ApexError)

Contains the error value