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