IterSolverResult

Type Alias IterSolverResult 

Source
pub type IterSolverResult<T> = Result<T, IterSolverError>;
Expand description

Result type for iterative solvers.

Aliased Type§

pub enum IterSolverResult<T> {
    Ok(T),
    Err(IterSolverError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IterSolverError)

Contains the error value