Type Definition jlrs::value::CallResult[][src]

type CallResult<'frame, 'data, V = Value<'frame, 'data>> = Result<V, Value<'frame, 'data>>;

This type alias is used to encode the result of a function call: Ok indicates the call was successful and contains the function’s result, while Err indicates an exception was thrown and contains said exception.