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