Skip to main content

DevResult

Type Alias DevResult 

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

A specialized Result type for device operations.

Aliased Type§

pub 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