Type Alias driver_common::DevResult

source ·
pub type DevResult<T = ()> = Result<T, DevError>;
Expand description

A specialized Result type for device operations.

Aliased Type§

enum DevResult<T = ()> {
    Ok(T),
    Err(DevError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(DevError)

Contains the error value