pub type NativeResult = Result<Value, Fault>;
Result type for a native function.
pub enum NativeResult { Ok(Value), Err(Fault), }
Contains the success value
Contains the error value