Type Alias procfs::ProcResult

source ·
pub type ProcResult<T> = Result<T, ProcError>;
Expand description

The main error type for the procfs crate.

For more info, see the ProcError type.

Aliased Type§

enum ProcResult<T> {
    Ok(T),
    Err(ProcError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ProcError)

Contains the error value