type Result<T> = Result<T>;
Our generic catchall fatal error, expected to be converted to a string to output to a terminal or logs.
enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value