Struct futures_util::stream::SelectWithStrategy [−][src]
pub struct SelectWithStrategy<St1, St2, Clos, State> { /* fields omitted */ }
Expand description
Stream for the select_with_strategy()
function. See function docs for details.
Implementations
Acquires a reference to the underlying streams that this combinator is pulling from.
Acquires a mutable reference to the underlying streams that this combinator is pulling from.
Note that care must be taken to avoid tampering with the state of the stream which may otherwise confuse this combinator.
Acquires a pinned mutable reference to the underlying streams that this combinator is pulling from.
Note that care must be taken to avoid tampering with the state of the stream which may otherwise confuse this combinator.
Consumes this combinator, returning the underlying streams.
Note that this may discard intermediate state of this combinator, so care should be taken to avoid losing resources when this is called.
Trait Implementations
impl<St1, St2, Clos, State> FusedStream for SelectWithStrategy<St1, St2, Clos, State> where
St1: Stream,
St2: Stream<Item = St1::Item>,
Clos: FnMut(&mut State) -> PollNext,
impl<St1, St2, Clos, State> FusedStream for SelectWithStrategy<St1, St2, Clos, State> where
St1: Stream,
St2: Stream<Item = St1::Item>,
Clos: FnMut(&mut State) -> PollNext,
Returns true
if the stream should no longer be polled.
Attempt to pull out the next value of this stream, registering the
current task for wakeup if the value is not yet available, and returning
None
if the stream is exhausted. Read more