pub type Result<T> = Result<T, DynError>;
Result alias used by all public functions in this module.
pub enum Result<T> { Ok(T), Err(Box<dyn Error>), }
Contains the success value
Contains the error value