LinuxResult

Type Alias LinuxResult 

Source
pub type LinuxResult<T = ()> = Result<T, LinuxError>;
Expand description

A specialized Result type with LinuxError as the error type.

Aliased Type§

pub enum LinuxResult<T = ()> {
    Ok(T),
    Err(LinuxError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LinuxError)

Contains the error value