pub type DrinkResult<T> = Result<T, Error>;
Main result type for the drink crate.
enum DrinkResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value