[−][src]Trait futures_util::stream::StreamExt
An extension trait for Stream
s that provides a variety of convenient
combinator functions.
Provided methods
ⓘImportant traits for Next<'_, St>fn next(&mut self) -> Next<Self> where
Self: Sized + Unpin,
[+]
ⓘImportant traits for Next<'_, St>
Self: Sized + Unpin,
ⓘImportant traits for StreamFuture<St>fn into_future(self) -> StreamFuture<Self> where
Self: Sized + Unpin,
[+]
ⓘImportant traits for StreamFuture<St>
Self: Sized + Unpin,
fn map<T, F>(self, f: F) -> Map<Self, F> where
F: FnMut(Self::Item) -> T,
Self: Sized,
[+]
F: FnMut(Self::Item) -> T,
Self: Sized,
fn enumerate(self) -> Enumerate<Self> where
Self: Sized,
[+]
Self: Sized,
fn filter<Fut, F>(self, f: F) -> Filter<Self, Fut, F> where
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
[+]
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
fn filter_map<Fut, T, F>(self, f: F) -> FilterMap<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = Option<T>>,
Self: Sized,
[+]
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = Option<T>>,
Self: Sized,
fn then<Fut, F>(self, f: F) -> Then<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future,
Self: Sized,
[+]
F: FnMut(Self::Item) -> Fut,
Fut: Future,
Self: Sized,
ⓘImportant traits for Collect<St, C>fn collect<C: Default + Extend<Self::Item>>(self) -> Collect<Self, C> where
Self: Sized,
[+]
ⓘImportant traits for Collect<St, C>
Self: Sized,
ⓘImportant traits for Concat<St>fn concat(self) -> Concat<Self> where
Self: Sized,
Self::Item: Extend<<Self::Item as IntoIterator>::Item> + IntoIterator + Default,
[+]
ⓘImportant traits for Concat<St>
Self: Sized,
Self::Item: Extend<<Self::Item as IntoIterator>::Item> + IntoIterator + Default,
ⓘImportant traits for Fold<St, Fut, T, F>fn fold<T, Fut, F>(self, init: T, f: F) -> Fold<Self, Fut, T, F> where
F: FnMut(T, Self::Item) -> Fut,
Fut: Future<Output = T>,
Self: Sized,
[+]
ⓘImportant traits for Fold<St, Fut, T, F>
F: FnMut(T, Self::Item) -> Fut,
Fut: Future<Output = T>,
Self: Sized,
fn flatten(self) -> Flatten<Self> where
Self::Item: Stream,
Self: Sized,
[+]
Self::Item: Stream,
Self: Sized,
fn skip_while<Fut, F>(self, f: F) -> SkipWhile<Self, Fut, F> where
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
[+]
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
fn take_while<Fut, F>(self, f: F) -> TakeWhile<Self, Fut, F> where
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
[+]
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
ⓘImportant traits for ForEach<St, Fut, F>fn for_each<Fut, F>(self, f: F) -> ForEach<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = ()>,
Self: Sized,
[+]
ⓘImportant traits for ForEach<St, Fut, F>
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = ()>,
Self: Sized,
ⓘImportant traits for ForEachConcurrent<St, Fut, F>fn for_each_concurrent<Fut, F>(
self,
limit: impl Into<Option<usize>>,
f: F
) -> ForEachConcurrent<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = ()>,
Self: Sized,
[+]
ⓘImportant traits for ForEachConcurrent<St, Fut, F>
self,
limit: impl Into<Option<usize>>,
f: F
) -> ForEachConcurrent<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = ()>,
Self: Sized,
fn take(self, n: u64) -> Take<Self> where
Self: Sized,
[+]
Self: Sized,
fn skip(self, n: u64) -> Skip<Self> where
Self: Sized,
[+]
Self: Sized,
fn fuse(self) -> Fuse<Self> where
Self: Sized,
[+]
Self: Sized,
ⓘImportant traits for &'_ mut Ifn by_ref(&mut self) -> &mut Self where
Self: Sized,
[+]
ⓘImportant traits for &'_ mut I
Self: Sized,
fn catch_unwind(self) -> CatchUnwind<Self> where
Self: Sized + UnwindSafe,
[+]
Self: Sized + UnwindSafe,
ⓘImportant traits for Pin<P>fn boxed(self) -> Pin<Box<Self>> where
Self: Sized,
[+]
ⓘImportant traits for Pin<P>
Self: Sized,
fn buffered(self, n: usize) -> Buffered<Self> where
Self::Item: Future,
Self: Sized,
[+]
Self::Item: Future,
Self: Sized,
fn buffer_unordered(self, n: usize) -> BufferUnordered<Self> where
Self::Item: Future,
Self: Sized,
[+]
Self::Item: Future,
Self: Sized,
fn zip<St>(self, other: St) -> Zip<Self, St> where
St: Stream,
Self: Sized,
[+]
St: Stream,
Self: Sized,
fn chain<St>(self, other: St) -> Chain<Self, St> where
St: Stream<Item = Self::Item>,
Self: Sized,
[+]
St: Stream<Item = Self::Item>,
Self: Sized,
fn peekable(self) -> Peekable<Self> where
Self: Sized,
[+]
Self: Sized,
fn chunks(self, capacity: usize) -> Chunks<Self> where
Self: Sized,
[+]
Self: Sized,
ⓘImportant traits for Forward<St, Si>fn forward<S>(self, sink: S) -> Forward<Self, S> where
S: Sink<Self::Ok>,
Self: TryStream<Error = S::SinkError> + Sized,
[+]
ⓘImportant traits for Forward<St, Si>
S: Sink<Self::Ok>,
Self: TryStream<Error = S::SinkError> + Sized,
fn split<Item>(self) -> (SplitSink<Self, Item>, SplitStream<Self>) where
Self: Sink<Item> + Sized,
[+]
Self: Sink<Item> + Sized,
fn inspect<F>(self, f: F) -> Inspect<Self, F> where
F: FnMut(&Self::Item),
Self: Sized,
[+]
F: FnMut(&Self::Item),
Self: Sized,
ⓘImportant traits for Either<A, B>fn left_stream<B>(self) -> Either<Self, B> where
B: Stream<Item = Self::Item>,
Self: Sized,
[+]
ⓘImportant traits for Either<A, B>
B: Stream<Item = Self::Item>,
Self: Sized,
ⓘImportant traits for Either<A, B>fn right_stream<B>(self) -> Either<B, Self> where
B: Stream<Item = Self::Item>,
Self: Sized,
[+]
ⓘImportant traits for Either<A, B>
B: Stream<Item = Self::Item>,
Self: Sized,
fn poll_next_unpin(&mut self, cx: &mut Context) -> Poll<Option<Self::Item>> where
Self: Unpin + Sized,
[+]
Self: Unpin + Sized,
ⓘImportant traits for SelectNextSome<'_, St>fn select_next_some(&mut self) -> SelectNextSome<Self> where
Self: Sized + Unpin + FusedStream,
[+]
ⓘImportant traits for SelectNextSome<'_, St>
Self: Sized + Unpin + FusedStream,
Implementors
impl<T: ?Sized> StreamExt for T where
T: Stream,
[src][−]
T: Stream,
ⓘImportant traits for Next<'_, St>fn next(&mut self) -> Next<Self> where
Self: Sized + Unpin,
[src]
ⓘImportant traits for Next<'_, St>
Self: Sized + Unpin,
ⓘImportant traits for StreamFuture<St>fn into_future(self) -> StreamFuture<Self> where
Self: Sized + Unpin,
[src]
ⓘImportant traits for StreamFuture<St>
Self: Sized + Unpin,
fn map<T, F>(self, f: F) -> Map<Self, F> where
F: FnMut(Self::Item) -> T,
Self: Sized,
[src]
F: FnMut(Self::Item) -> T,
Self: Sized,
fn enumerate(self) -> Enumerate<Self> where
Self: Sized,
[src]
Self: Sized,
fn filter<Fut, F>(self, f: F) -> Filter<Self, Fut, F> where
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
[src]
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
fn filter_map<Fut, T, F>(self, f: F) -> FilterMap<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = Option<T>>,
Self: Sized,
[src]
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = Option<T>>,
Self: Sized,
fn then<Fut, F>(self, f: F) -> Then<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future,
Self: Sized,
[src]
F: FnMut(Self::Item) -> Fut,
Fut: Future,
Self: Sized,
ⓘImportant traits for Collect<St, C>fn collect<C: Default + Extend<Self::Item>>(self) -> Collect<Self, C> where
Self: Sized,
[src]
ⓘImportant traits for Collect<St, C>
Self: Sized,
ⓘImportant traits for Concat<St>fn concat(self) -> Concat<Self> where
Self: Sized,
Self::Item: Extend<<Self::Item as IntoIterator>::Item> + IntoIterator + Default,
[src]
ⓘImportant traits for Concat<St>
Self: Sized,
Self::Item: Extend<<Self::Item as IntoIterator>::Item> + IntoIterator + Default,
ⓘImportant traits for Fold<St, Fut, T, F>fn fold<T, Fut, F>(self, init: T, f: F) -> Fold<Self, Fut, T, F> where
F: FnMut(T, Self::Item) -> Fut,
Fut: Future<Output = T>,
Self: Sized,
[src]
ⓘImportant traits for Fold<St, Fut, T, F>
F: FnMut(T, Self::Item) -> Fut,
Fut: Future<Output = T>,
Self: Sized,
fn flatten(self) -> Flatten<Self> where
Self::Item: Stream,
Self: Sized,
[src]
Self::Item: Stream,
Self: Sized,
fn skip_while<Fut, F>(self, f: F) -> SkipWhile<Self, Fut, F> where
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
[src]
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
fn take_while<Fut, F>(self, f: F) -> TakeWhile<Self, Fut, F> where
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
[src]
F: FnMut(&Self::Item) -> Fut,
Fut: Future<Output = bool>,
Self: Sized,
ⓘImportant traits for ForEach<St, Fut, F>fn for_each<Fut, F>(self, f: F) -> ForEach<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = ()>,
Self: Sized,
[src]
ⓘImportant traits for ForEach<St, Fut, F>
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = ()>,
Self: Sized,
ⓘImportant traits for ForEachConcurrent<St, Fut, F>fn for_each_concurrent<Fut, F>(
self,
limit: impl Into<Option<usize>>,
f: F
) -> ForEachConcurrent<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = ()>,
Self: Sized,
[src]
ⓘImportant traits for ForEachConcurrent<St, Fut, F>
self,
limit: impl Into<Option<usize>>,
f: F
) -> ForEachConcurrent<Self, Fut, F> where
F: FnMut(Self::Item) -> Fut,
Fut: Future<Output = ()>,
Self: Sized,
fn take(self, n: u64) -> Take<Self> where
Self: Sized,
[src]
Self: Sized,
fn skip(self, n: u64) -> Skip<Self> where
Self: Sized,
[src]
Self: Sized,
fn fuse(self) -> Fuse<Self> where
Self: Sized,
[src]
Self: Sized,
ⓘImportant traits for &'_ mut Ifn by_ref(&mut self) -> &mut Self where
Self: Sized,
[src]
ⓘImportant traits for &'_ mut I
Self: Sized,
fn catch_unwind(self) -> CatchUnwind<Self> where
Self: Sized + UnwindSafe,
[src]
Self: Sized + UnwindSafe,
ⓘImportant traits for Pin<P>fn boxed(self) -> Pin<Box<Self>> where
Self: Sized,
[src]
ⓘImportant traits for Pin<P>
Self: Sized,
fn buffered(self, n: usize) -> Buffered<Self> where
Self::Item: Future,
Self: Sized,
[src]
Self::Item: Future,
Self: Sized,
fn buffer_unordered(self, n: usize) -> BufferUnordered<Self> where
Self::Item: Future,
Self: Sized,
[src]
Self::Item: Future,
Self: Sized,
fn zip<St>(self, other: St) -> Zip<Self, St> where
St: Stream,
Self: Sized,
[src]
St: Stream,
Self: Sized,
fn chain<St>(self, other: St) -> Chain<Self, St> where
St: Stream<Item = Self::Item>,
Self: Sized,
[src]
St: Stream<Item = Self::Item>,
Self: Sized,
fn peekable(self) -> Peekable<Self> where
Self: Sized,
[src]
Self: Sized,
fn chunks(self, capacity: usize) -> Chunks<Self> where
Self: Sized,
[src]
Self: Sized,
ⓘImportant traits for Forward<St, Si>fn forward<S>(self, sink: S) -> Forward<Self, S> where
S: Sink<Self::Ok>,
Self: TryStream<Error = S::SinkError> + Sized,
[src]
ⓘImportant traits for Forward<St, Si>
S: Sink<Self::Ok>,
Self: TryStream<Error = S::SinkError> + Sized,
fn split<Item>(self) -> (SplitSink<Self, Item>, SplitStream<Self>) where
Self: Sink<Item> + Sized,
[src]
Self: Sink<Item> + Sized,
fn inspect<F>(self, f: F) -> Inspect<Self, F> where
F: FnMut(&Self::Item),
Self: Sized,
[src]
F: FnMut(&Self::Item),
Self: Sized,
ⓘImportant traits for Either<A, B>fn left_stream<B>(self) -> Either<Self, B> where
B: Stream<Item = Self::Item>,
Self: Sized,
[src]
ⓘImportant traits for Either<A, B>
B: Stream<Item = Self::Item>,
Self: Sized,
ⓘImportant traits for Either<A, B>fn right_stream<B>(self) -> Either<B, Self> where
B: Stream<Item = Self::Item>,
Self: Sized,
[src]
ⓘImportant traits for Either<A, B>
B: Stream<Item = Self::Item>,
Self: Sized,
fn poll_next_unpin(&mut self, cx: &mut Context) -> Poll<Option<Self::Item>> where
Self: Unpin + Sized,
[src]
Self: Unpin + Sized,
ⓘImportant traits for SelectNextSome<'_, St>fn select_next_some(&mut self) -> SelectNextSome<Self> where
Self: Sized + Unpin + FusedStream,
[src]
ⓘImportant traits for SelectNextSome<'_, St>
Self: Sized + Unpin + FusedStream,