ApexSolverResult

Type Alias ApexSolverResult 

Source
pub type ApexSolverResult<T> = Result<T, ApexSolverError>;
Expand description

Main result type used throughout the apex-solver library

Aliased Type§

pub enum ApexSolverResult<T> {
    Ok(T),
    Err(ApexSolverError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ApexSolverError)

Contains the error value