Module futures_util::stream::select_with_strategy
source ยท Structsยง
- Stream for the
select_with_strategy()
function. See function docs for details.
Enumsยง
- InternalState ๐
- Type to tell
SelectWithStrategy
which stream to poll next.
Functionsยง
- poll_inner ๐
- poll_side ๐
- This function will attempt to pull items from both streams. You provide a closure to tell
SelectWithStrategy
which stream to poll. The closure can store state onSelectWithStrategy
to which it will receive a&mut
on every invocation. This allows basing the strategy on prior choices.