ShellResult

Type Alias ShellResult 

Source
pub type ShellResult<T> = Result<T, ShellError>;
Expand description

Result type alias for shell operations.

Aliased Type§

pub enum ShellResult<T> {
    Ok(T),
    Err(ShellError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ShellError)

Contains the error value