NumeraResult

Type Alias NumeraResult 

Source
pub type NumeraResult<N> = Result<N, NumeraErrors>;
Expand description

The numera common result type.

Aliased Type§

pub enum NumeraResult<N> {
    Ok(N),
    Err(NumeraErrors),
}

Variants§

§1.0.0

Ok(N)

Contains the success value

§1.0.0

Err(NumeraErrors)

Contains the error value