pub type Result<T> = Result<T, Exception>;
Type alias for a Result with an Exception error type.
Result
Exception
enum Result<T> { Ok(T), Err(Exception), }
Contains the success value
Contains the error value