pub type DynResult<T> = Result<T, Box<dyn Error>>;
Result type that boxes the error. Allows constructors to return arbitrary errors.
pub enum DynResult<T> { Ok(T), Err(Box<dyn Error>), }
Contains the success value
Contains the error value