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