Type Alias ProcResult

Source
pub type ProcResult<T> = Result<T, Error>;
Expand description

A possible result of running and waiting for a process to terminate.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value