Type Alias statrs::Result

source ·
pub type Result<T> = Result<T, StatsError>;
Expand description

Result type for the statrs library package that returns either a result type T or a StatsError

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StatsError)

Contains the error value