Creates a new instance of Result<T, Error> based on the result of a function fn that might throw an exception.
Result<T, Error>
fn
Return type of the function being evaluated.
Function to evaluate.
If an exception is thrown, an Err with the thrown error is returned. Otherwise, an Ok with the result of calling fn.
Err
Ok
Creates a new instance of
Result<T, Error>
based on the result of a functionfn
that might throw an exception.