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