pub type Res<T> = Result<T, Error>;
Result type alias
pub enum Res<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value