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