Type Definition jlrs::error::JuliaResult[][src]

pub type JuliaResult<'frame, 'data, V = Value<'frame, 'data>> = Result<V, Value<'frame, 'data>>;
Expand description

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.

Trait Implementations

Convert self to JlrsResult by calling Base.showerror if an exception has been thrown. Read more