Crate foretry
Source - async_ltry
- Try block that forwards
.await
, break
, and continue
Must be used in async and loop context. - async_try
- Try block that forwards
.await
Must be used in async context. - brk
- Replacement for
break
inside the provided try block macros.
Note that this is not required, and not usable, in the catch block. - cont
- Replacement for
continue
inside the provided try block macros.
Note that this is not required, and not usable, in the catch block. - try_block
- Try block that doesn’t forward any control flow effects
Can be used in any context.