pub type Result<T> = Result<T, Error>;
Type alias for a simplified Result with Error.
pub enum Result<T> { Ok(T), Err(Box<dyn Error + Send + Sync>), }
Contains the success value
Contains the error value