Expand description
Generator-shape coroutine contract.
Mirrors core::ops::Coroutine: a Yield associated type for intermediate
progress, a Return for terminal output, and a two-variant
JmapCoroutineState.
Most coroutines pick the standard JmapYield (I/O-only); redirect-aware
ones declare their own (e.g. JmapRedirectYield).
Enums§
- Jmap
Coroutine State - State yielded by a
JmapCoroutine::resumestep. - Jmap
Yield - Standard I/O-only Yield for coroutines that only read/write socket bytes.
Traits§
- Jmap
Coroutine - Standard-shape JMAP coroutine.