pub type Res<T> = Result<T, Err>;
A helper type for results.
pub enum Res<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value