pub type AnyResult<T> = Result<T, AnyError>;
Any Result
pub enum AnyResult<T> { Ok(T), Err(Box<dyn Error>), }
Contains the success value
Contains the error value