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