We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It would be useful in functions that can fail in different ways from the functions it calls itself, allowing something like:
fn func() -> Result<T, Error> { try!(may_return_error_type_A); try!(may_return_error_type_B); }