pub type FunResult = Result<String>;
Return type for run_fun!() macro
enum FunResult { Ok(String), Err(Error), }
Contains the success value
Contains the error value