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