Type Alias polar_core::error::PolarResult

source ·
pub type PolarResult<T> = Result<T, PolarError>;

Aliased Type§

enum PolarResult<T> {
    Ok(T),
    Err(PolarError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PolarError)

Contains the error value