pub type HardwareResult<T> = Result<T, HardwareError>;
Expand description

Hardware API result

Aliased Type§

enum HardwareResult<T> {
    Ok(T),
    Err(HardwareError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(HardwareError)

Contains the error value