pub type HandlerResult = Result<(), Box<dyn Error + Send + Sync + 'static>>;
Handler result type
enum HandlerResult { Ok(()), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value