[−][src]Trait futures::stream::Stream
A stream of values produced asynchronously.
If Future<Output = T>
is an asynchronous version of T
, then Stream<Item = T>
is an asynchronous version of Iterator<Item = T>
. A stream
represents a sequence of value-producing events that occur asynchronously to
the caller.
The trait is modeled after Future
, but allows poll_next
to be called
even after a value has been produced, yielding None
once the stream has
been fully exhausted.
Associated Types
type Item
Values yielded by the stream.
Required methods
fn poll_next(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<Option<Self::Item>>
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.
Return value
There are several possible return values, each indicating a distinct stream state:
-
Poll::Pending
means that this stream's next value is not ready yet. Implementations will ensure that the current task will be notified when the next value may be ready. -
Poll::Ready(Some(val))
means that the stream has successfully produced a value,val
, and may produce further values on subsequentpoll_next
calls. -
Poll::Ready(None)
means that the stream has terminated, andpoll_next
should not be invoked again.
Panics
Once a stream is finished, i.e. Ready(None)
has been returned, further
calls to poll_next
may result in a panic or other "bad behavior". If
this is difficult to guard against then the fuse
adapter can be used
to ensure that poll_next
always returns Ready(None)
in subsequent
calls.
Implementations on Foreign Types
impl<St, F, E> Stream for MapErr<St, F> where
F: FnMut(<St as TryStream>::Error) -> E,
St: TryStream,
[src]
impl<St, F, E> Stream for MapErr<St, F> where
F: FnMut(<St as TryStream>::Error) -> E,
St: TryStream,
type Item = Result<<St as TryStream>::Ok, E>
fn poll_next( | [src] |
impl<S, U, St, F> Stream for WithFlatMap<S, U, St, F> where
F: FnMut(U) -> St,
S: Stream + Sink,
St: Stream<Item = Result<<S as Sink>::SinkItem, <S as Sink>::SinkError>>,
[src]
impl<S, U, St, F> Stream for WithFlatMap<S, U, St, F> where
F: FnMut(U) -> St,
S: Stream + Sink,
St: Stream<Item = Result<<S as Sink>::SinkItem, <S as Sink>::SinkError>>,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<St, F, T> Stream for MapOk<St, F> where
F: FnMut(<St as TryStream>::Ok) -> T,
St: TryStream,
[src]
impl<St, F, T> Stream for MapOk<St, F> where
F: FnMut(<St as TryStream>::Ok) -> T,
St: TryStream,
type Item = Result<T, <St as TryStream>::Error>
fn poll_next( | [src] |
impl<St, Fut, F, T> Stream for TryFilterMap<St, Fut, F> where
F: FnMut(<St as TryStream>::Ok) -> Fut,
Fut: TryFuture<Ok = Option<T>, Error = <St as TryStream>::Error>,
St: TryStream,
[src]
impl<St, Fut, F, T> Stream for TryFilterMap<St, Fut, F> where
F: FnMut(<St as TryStream>::Ok) -> Fut,
Fut: TryFuture<Ok = Option<T>, Error = <St as TryStream>::Error>,
St: TryStream,
type Item = Result<T, <St as TryStream>::Error>
fn poll_next( | [src] |
impl<A, B> Stream for Either<A, B> where
A: Stream,
B: Stream<Item = <A as Stream>::Item>,
[src]
impl<A, B> Stream for Either<A, B> where
A: Stream,
B: Stream<Item = <A as Stream>::Item>,
type Item = <A as Stream>::Item
fn poll_next( | [src] |
impl<S> Stream for Box<S> where
S: Stream + Unpin + ?Sized,
[src]
impl<S> Stream for Box<S> where
S: Stream + Unpin + ?Sized,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<T> Stream for VecDeque<T> where
T: Unpin,
[src]
impl<T> Stream for VecDeque<T> where
T: Unpin,
type Item = T
fn poll_next( | [src] |
impl<P> Stream for Pin<P> where
P: DerefMut + Unpin,
<P as Deref>::Target: Stream,
[src]
impl<P> Stream for Pin<P> where
P: DerefMut + Unpin,
<P as Deref>::Target: Stream,
type Item = <<P as Deref>::Target as Stream>::Item
fn poll_next( | [src] |
impl<S> Stream for AssertUnwindSafe<S> where
S: Stream,
[src]
impl<S> Stream for AssertUnwindSafe<S> where
S: Stream,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<'a, S> Stream for &'a mut S where
S: Stream + Unpin + ?Sized,
[src]
impl<'a, S> Stream for &'a mut S where
S: Stream + Unpin + ?Sized,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
Implementors
impl<'a, T> Stream for LocalStreamObj<'a, T>
[src]
impl<'a, T> Stream for LocalStreamObj<'a, T>
type Item = T
fn poll_next( | [src] |
impl<'a, T> Stream for StreamObj<'a, T>
[src]
impl<'a, T> Stream for StreamObj<'a, T>
type Item = T
fn poll_next( | [src] |
impl<Fut> Stream for FlattenStream<Fut> where
Fut: Future,
<Fut as Future>::Output: Stream,
[src]
impl<Fut> Stream for FlattenStream<Fut> where
Fut: Future,
<Fut as Future>::Output: Stream,
type Item = <<Fut as Future>::Output as Stream>::Item
fn poll_next( | [src] |
impl<Fut> Stream for futures::future::IntoStream<Fut> where
Fut: Future,
[src]
impl<Fut> Stream for futures::future::IntoStream<Fut> where
Fut: Future,
type Item = <Fut as Future>::Output
fn poll_next( | [src] |
impl<Fut> Stream for FuturesOrdered<Fut> where
Fut: Future,
[src]
impl<Fut> Stream for FuturesOrdered<Fut> where
Fut: Future,
type Item = <Fut as Future>::Output
fn poll_next( | [src] |
impl<Fut> Stream for FuturesUnordered<Fut> where
Fut: Future,
[src]
impl<Fut> Stream for FuturesUnordered<Fut> where
Fut: Future,
type Item = <Fut as Future>::Output
fn poll_next( | [src] |
impl<Fut> Stream for Once<Fut> where
Fut: Future,
[src]
impl<Fut> Stream for Once<Fut> where
Fut: Future,
type Item = <Fut as Future>::Output
fn poll_next( | [src] |
impl<I> Stream for Iter<I> where
I: Iterator,
[src]
impl<I> Stream for Iter<I> where
I: Iterator,
type Item = <I as Iterator>::Item
fn poll_next( | [src] |
impl<S> Stream for Buffer<S> where
S: Sink + Stream,
[src]
impl<S> Stream for Buffer<S> where
S: Sink + Stream,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<S> Stream for Fuse<S> where
S: Stream,
[src]
impl<S> Stream for Fuse<S> where
S: Stream,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<S> Stream for Peekable<S> where
S: Stream,
[src]
impl<S> Stream for Peekable<S> where
S: Stream,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<S> Stream for SplitStream<S> where
S: Stream,
[src]
impl<S> Stream for SplitStream<S> where
S: Stream,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<S, E> Stream for SinkErrInto<S, E> where
S: Sink + Stream,
<S as Sink>::SinkError: Into<E>,
[src]
impl<S, E> Stream for SinkErrInto<S, E> where
S: Sink + Stream,
<S as Sink>::SinkError: Into<E>,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<S, F> Stream for SinkMapErr<S, F> where
S: Stream,
[src]
impl<S, F> Stream for SinkMapErr<S, F> where
S: Stream,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<S, U, Fut, F> Stream for With<S, U, Fut, F> where
F: FnMut(U) -> Fut,
Fut: Future,
S: Stream + Sink,
[src]
impl<S, U, Fut, F> Stream for With<S, U, Fut, F> where
F: FnMut(U) -> Fut,
Fut: Future,
S: Stream + Sink,
type Item = <S as Stream>::Item
fn poll_next( | [src] |
impl<St> Stream for Compat01As03<St> where
St: Stream,
[src]
impl<St> Stream for Compat01As03<St> where
St: Stream,
type Item = Result<<St as Stream>::Item, <St as Stream>::Error>
fn poll_next( | [src] |
impl<St> Stream for BufferUnordered<St> where
St: Stream,
<St as Stream>::Item: Future,
[src]
impl<St> Stream for BufferUnordered<St> where
St: Stream,
<St as Stream>::Item: Future,
type Item = <<St as Stream>::Item as Future>::Output
fn poll_next( | [src] |
impl<St> Stream for Buffered<St> where
St: Stream,
<St as Stream>::Item: Future,
[src]
impl<St> Stream for Buffered<St> where
St: Stream,
<St as Stream>::Item: Future,
type Item = <<St as Stream>::Item as Future>::Output
fn poll_next( | [src] |
impl<St> Stream for CatchUnwind<St> where
St: UnwindSafe + Stream,
[src]
impl<St> Stream for CatchUnwind<St> where
St: UnwindSafe + Stream,
type Item = Result<<St as Stream>::Item, Box<dyn Any + 'static + Send>>
fn poll_next( | [src] |
impl<St> Stream for Chunks<St> where
St: Stream,
[src]
impl<St> Stream for Chunks<St> where
St: Stream,
type Item = Vec<<St as Stream>::Item>
fn poll_next( | [src] |
impl<St> Stream for Flatten<St> where
St: Stream,
<St as Stream>::Item: Stream,
[src]
impl<St> Stream for Flatten<St> where
St: Stream,
<St as Stream>::Item: Stream,
type Item = <<St as Stream>::Item as Stream>::Item
fn poll_next( | [src] |
impl<St> Stream for futures::stream::IntoStream<St> where
St: TryStream,
[src]
impl<St> Stream for futures::stream::IntoStream<St> where
St: TryStream,
type Item = Result<<St as TryStream>::Ok, <St as TryStream>::Error>
fn poll_next( | [src] |
impl<St> Stream for SelectAll<St> where
St: Unpin + Stream,
[src]
impl<St> Stream for SelectAll<St> where
St: Unpin + Stream,
type Item = <St as Stream>::Item
fn poll_next( | [src] |
impl<St> Stream for Skip<St> where
St: Stream,
[src]
impl<St> Stream for Skip<St> where
St: Stream,
type Item = <St as Stream>::Item
fn poll_next( | [src] |
impl<St> Stream for Take<St> where
St: Stream,
[src]
impl<St> Stream for Take<St> where
St: Stream,
type Item = <St as Stream>::Item
fn poll_next( | [src] |
impl<St> Stream for TryBufferUnordered<St> where
St: TryStream,
<St as TryStream>::Ok: TryFuture,
<<St as TryStream>::Ok as TryFuture>::Error == <St as TryStream>::Error,
[src]
impl<St> Stream for TryBufferUnordered<St> where
St: TryStream,
<St as TryStream>::Ok: TryFuture,
<<St as TryStream>::Ok as TryFuture>::Error == <St as TryStream>::Error,
type Item = Result<<<St as TryStream>::Ok as TryFuture>::Ok, <St as TryStream>::Error>
fn poll_next( | [src] |
impl<St, E> Stream for ErrInto<St, E> where
St: TryStream,
<St as TryStream>::Error: Into<E>,
[src]
impl<St, E> Stream for ErrInto<St, E> where
St: TryStream,
<St as TryStream>::Error: Into<E>,
type Item = Result<<St as TryStream>::Ok, E>
fn poll_next( | [src] |
impl<St, F> Stream for Inspect<St, F> where
F: FnMut(&<St as Stream>::Item),
St: Stream,
[src]
impl<St, F> Stream for Inspect<St, F> where
F: FnMut(&<St as Stream>::Item),
St: Stream,
type Item = <St as Stream>::Item
fn poll_next( | [src] |
impl<St, F, T> Stream for Map<St, F> where
F: FnMut(<St as Stream>::Item) -> T,
St: Stream,
[src]
impl<St, F, T> Stream for Map<St, F> where
F: FnMut(<St as Stream>::Item) -> T,
St: Stream,
impl<St, Fut, F> Stream for Filter<St, Fut, F> where
F: FnMut(&<St as Stream>::Item) -> Fut,
Fut: Future<Output = bool>,
St: Stream,
[src]
impl<St, Fut, F> Stream for Filter<St, Fut, F> where
F: FnMut(&<St as Stream>::Item) -> Fut,
Fut: Future<Output = bool>,
St: Stream,
type Item = <St as Stream>::Item
fn poll_next( | [src] |
impl<St, Fut, F> Stream for SkipWhile<St, Fut, F> where
F: FnMut(&<St as Stream>::Item) -> Fut,
Fut: Future<Output = bool>,
St: Stream,
[src]
impl<St, Fut, F> Stream for SkipWhile<St, Fut, F> where
F: FnMut(&<St as Stream>::Item) -> Fut,
Fut: Future<Output = bool>,
St: Stream,
type Item = <St as Stream>::Item
fn poll_next( | [src] |
impl<St, Fut, F> Stream for TakeWhile<St, Fut, F> where
F: FnMut(&<St as Stream>::Item) -> Fut,
Fut: Future<Output = bool>,
St: Stream,
[src]
impl<St, Fut, F> Stream for TakeWhile<St, Fut, F> where
F: FnMut(&<St as Stream>::Item) -> Fut,
Fut: Future<Output = bool>,
St: Stream,
type Item = <St as Stream>::Item
fn poll_next( | [src] |
impl<St, Fut, F> Stream for Then<St, Fut, F> where
F: FnMut(<St as Stream>::Item) -> Fut,
Fut: Future,
St: Stream,
[src]
impl<St, Fut, F> Stream for Then<St, Fut, F> where
F: FnMut(<St as Stream>::Item) -> Fut,
Fut: Future,
St: Stream,
type Item = <Fut as Future>::Output
fn poll_next( | [src] |
impl<St, Fut, F> Stream for TrySkipWhile<St, Fut, F> where
F: FnMut(&<St as TryStream>::Ok) -> Fut,
Fut: TryFuture<Ok = bool, Error = <St as TryStream>::Error>,
St: TryStream,
[src]
impl<St, Fut, F> Stream for TrySkipWhile<St, Fut, F> where
F: FnMut(&<St as TryStream>::Ok) -> Fut,
Fut: TryFuture<Ok = bool, Error = <St as TryStream>::Error>,
St: TryStream,
type Item = Result<<St as TryStream>::Ok, <St as TryStream>::Error>
fn poll_next( | [src] |
impl<St, Fut, F, T> Stream for FilterMap<St, Fut, F> where
F: FnMut(<St as Stream>::Item) -> Fut,
Fut: Future<Output = Option<T>>,
St: Stream,
[src]
impl<St, Fut, F, T> Stream for FilterMap<St, Fut, F> where
F: FnMut(<St as Stream>::Item) -> Fut,
Fut: Future<Output = Option<T>>,
St: Stream,
type Item = T
fn poll_next( | [src] |
impl<St1, St2> Stream for Chain<St1, St2> where
St1: Stream,
St2: Stream<Item = <St1 as Stream>::Item>,
[src]
impl<St1, St2> Stream for Chain<St1, St2> where
St1: Stream,
St2: Stream<Item = <St1 as Stream>::Item>,
type Item = <St1 as Stream>::Item
fn poll_next( | [src] |
impl<St1, St2> Stream for Select<St1, St2> where
St1: Stream,
St2: Stream<Item = <St1 as Stream>::Item>,
[src]
impl<St1, St2> Stream for Select<St1, St2> where
St1: Stream,
St2: Stream<Item = <St1 as Stream>::Item>,
type Item = <St1 as Stream>::Item
fn poll_next( | [src] |
impl<St1, St2> Stream for Zip<St1, St2> where
St1: Stream,
St2: Stream,
[src]
impl<St1, St2> Stream for Zip<St1, St2> where
St1: Stream,
St2: Stream,
type Item = (<St1 as Stream>::Item, <St2 as Stream>::Item)
fn poll_next( | [src] |
impl<T> Stream for Receiver<T>
[src]
impl<T> Stream for Receiver<T>
impl<T> Stream for UnboundedReceiver<T>
[src]
impl<T> Stream for UnboundedReceiver<T>
type Item = T
fn poll_next( | [src] |
impl<T> Stream for Empty<T>
[src]
impl<T> Stream for Empty<T>
type Item = T
fn poll_next( | [src] |
impl<T> Stream for Repeat<T> where
T: Clone,
[src]
impl<T> Stream for Repeat<T> where
T: Clone,
type Item = T
fn poll_next( | [src] |
impl<T, F> Stream for PollFn<F> where
F: FnMut(&LocalWaker) -> Poll<Option<T>>,
[src]
impl<T, F> Stream for PollFn<F> where
F: FnMut(&LocalWaker) -> Poll<Option<T>>,
impl<T, F, Fut, It> Stream for Unfold<T, F, Fut> where
F: FnMut(T) -> Fut,
Fut: Future<Output = Option<(It, T)>>,
[src]
impl<T, F, Fut, It> Stream for Unfold<T, F, Fut> where
F: FnMut(T) -> Fut,
Fut: Future<Output = Option<(It, T)>>,