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