Struct blocking_permit::YieldStream[][src]

pub struct YieldStream<St, I> where
    St: Stream<Item = I>, 
{ /* fields omitted */ }
Expand description

A Stream adapter that yields after every Poll::Ready(Some(_)) result from its source.

The wrapper may be useful to ensure that a Future that polls a Stream (directly or indirectly) yields (return Poll::Pending) between items. If the source stream already returns Poll::Pending then this will not add further Poll::Pending returns.

The type is enabled via the yield-stream feature.

Implementations

Construct with source to wrap.

Trait Implementations

Formats the value using the given formatter. Read more

Values yielded by the stream.

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

Returns the bounds on the remaining length of the stream. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type of successful values yielded by this future

The type of failures yielded by this future

Poll this TryStream as if it were a Stream. Read more