Type Alias reedline::Result

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

Standard std::result::Result, with ReedlineError as the error variant

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(ReedlineError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ReedlineError)

Contains the error value