pub type Result<T> = Result<T, Report>;
An alias for the common Result type of this crate
enum Result<T> { Ok(T), Err(Report), }
Contains the success value
Contains the error value