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