Type Alias linfa_reduction::Result

source ·
pub type Result<T> = Result<T, ReductionError>;

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ReductionError)

Contains the error value