Macro std::result::try

macro try($res) { ... }

Extract the success value or short-circuit the calling function.

When expression is suffixed with ?, this is de-sugared to an invocation of try macro on the expression.

Expands to the following expression

See also try for Option.