We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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); }