pub type Result<T> = Result<T, Error>;
Operational (post-initialization) result that has Error as an error variant.
Error
pub enum Result<T> { Ok(T), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value