Type Alias drink_next::DrinkResult

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

Main result type for the drink crate.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value