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