Type Alias Result

Source
pub type Result<'a, T> = Result<T, InteractiveError<'a>>;
Expand description

The result type of most interactive methods.

Aliased Type§

pub enum Result<'a, T> {
    Ok(T),
    Err(InteractiveError<'a>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InteractiveError<'a>)

Contains the error value