Skip to main content

ReductionResult

Type Alias ReductionResult 

Source
pub type ReductionResult<T> = Result<T, ReductionError>;
Expand description

Explicitly named alias for callers that also import another crate’s Result.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ReductionError)

Contains the error value