Type Alias axerrno::LinuxResult

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

A specialized Result type with LinuxError as the error type.

Aliased Type§

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