HalResult

Type Alias HalResult 

Source
pub type HalResult<T> = Result<T, HalError>;

Aliased Type§

pub enum HalResult<T> {
    Ok(T),
    Err(HalError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(HalError)

Contains the error value