blob: e85b725fb4012baf93a45383aaef3873c9f469f9 [file] [log] [blame]
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="A stream which tracks whether or not the underlying stream should no longer be polled."><meta name="keywords" content="rust, rustlang, rust-lang, FusedStream"><title>FusedStream in futures::stream - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceSerif4-Regular.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../FiraSans-Regular.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../FiraSans-Medium.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceCodePro-Regular.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceSerif4-Bold.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceCodePro-Semibold.ttf.woff2"><link rel="stylesheet" href="../../normalize.css"><link rel="stylesheet" href="../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" href="../../ayu.css" disabled><link rel="stylesheet" href="../../dark.css" disabled><link rel="stylesheet" href="../../light.css" id="themeStyle"><script id="default-settings" ></script><script src="../../storage.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../main.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="alternate icon" type="image/png" href="../../favicon-16x16.png"><link rel="alternate icon" type="image/png" href="../../favicon-32x32.png"><link rel="icon" type="image/svg+xml" href="../../favicon.svg"></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle">&#9776;</button><a class="sidebar-logo" href="../../futures/index.html"><div class="logo-container"><img class="rust-logo" src="../../rust-logo.svg" alt="logo"></div></a><h2></h2></nav><nav class="sidebar"><a class="sidebar-logo" href="../../futures/index.html"><div class="logo-container"><img class="rust-logo" src="../../rust-logo.svg" alt="logo"></div></a><h2 class="location"><a href="#">FusedStream</a></h2><div class="sidebar-elems"><section><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.is_terminated">is_terminated</a></li></ul><h3><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul class="block"><li><a href="#impl-FusedStream-for-%26mut%20F">&amp;mut F</a></li><li><a href="#impl-FusedStream-for-Box%3CS%2C%20Global%3E">Box&lt;S, Global&gt;</a></li><li><a href="#impl-FusedStream-for-Pin%3CP%3E">Pin&lt;P&gt;</a></li></ul><h3><a href="#implementors">Implementors</a></h3></section><h2><a href="index.html">In futures::stream</a></h2></div></nav><main><div class="width-limiter"><nav class="sub"><form class="search-form"><div class="search-container"><span></span><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"><div id="help-button" title="help" tabindex="-1"><a href="../../help.html">?</a></div><div id="settings-menu" tabindex="-1"><a href="../../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../../wheel.svg"></a></div></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1 class="fqn">Trait <a href="../index.html">futures</a>::<wbr><a href="index.html">stream</a>::<wbr><a class="trait" href="#">FusedStream</a><button id="copy-path" onclick="copy_path(this)" title="Copy item path to clipboard"><img src="../../clipboard.svg" width="19" height="18" alt="Copy item path"></button></h1><span class="out-of-band"><a class="srclink" href="../../src/futures_core/stream.rs.html#136">source</a> · <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class="inner">&#x2212;</span>]</a></span></div><div class="item-decl"><pre class="rust trait"><code>pub trait FusedStream: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a> {
fn <a href="#tymethod.is_terminated" class="fnname">is_terminated</a>(&amp;self) -&gt; bool;
}</code></pre></div><details class="rustdoc-toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>A stream which tracks whether or not the underlying stream
should no longer be polled.</p>
<p><code>is_terminated</code> will return <code>true</code> if a future should no longer be polled.
Usually, this state occurs after <code>poll_next</code> (or <code>try_poll_next</code>) returned
<code>Poll::Ready(None)</code>. However, <code>is_terminated</code> may also return <code>true</code> if a
stream has become inactive and can no longer make progress and should be
ignored or dropped rather than being polled again.</p>
</div></details><h2 id="required-methods" class="small-section-header">Required Methods<a href="#required-methods" class="anchor"></a></h2><div class="methods"><details class="rustdoc-toggle method-toggle" open><summary><section id="tymethod.is_terminated" class="method has-srclink"><a class="srclink rightside" href="../../src/futures_core/stream.rs.html#138">source</a><h4 class="code-header">fn <a href="#tymethod.is_terminated" class="fnname">is_terminated</a>(&amp;self) -&gt; bool</h4></section></summary><div class="docblock"><p>Returns <code>true</code> if the stream should no longer be polled.</p>
</div></details></div><h2 id="foreign-impls" class="small-section-header">Implementations on Foreign Types<a href="#foreign-impls" class="anchor"></a></h2><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-FusedStream-for-Pin%3CP%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_core/stream.rs.html#147">source</a><a href="#impl-FusedStream-for-Pin%3CP%3E" class="anchor"></a><h3 class="code-header">impl&lt;P&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for Pin&lt;P&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: DerefMut + Unpin,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;P as Deref&gt;::Target: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section></summary><div class="impl-items"><section id="method.is_terminated" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/futures_core/stream.rs.html#152">source</a><a href="#method.is_terminated" class="anchor"></a><h4 class="code-header">fn <a href="#tymethod.is_terminated" class="fnname">is_terminated</a>(&amp;self) -&gt; bool</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-FusedStream-for-%26mut%20F" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_core/stream.rs.html#141">source</a><a href="#impl-FusedStream-for-%26mut%20F" class="anchor"></a><h3 class="code-header">impl&lt;F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for &amp;mut F<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> + Unpin + ?Sized,</span></h3></section></summary><div class="impl-items"><section id="method.is_terminated-1" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/futures_core/stream.rs.html#142">source</a><a href="#method.is_terminated-1" class="anchor"></a><h4 class="code-header">fn <a href="#tymethod.is_terminated" class="fnname">is_terminated</a>(&amp;self) -&gt; bool</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-FusedStream-for-Box%3CS%2C%20Global%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_core/stream.rs.html#230">source</a><a href="#impl-FusedStream-for-Box%3CS%2C%20Global%3E" class="anchor"></a><h3 class="code-header">impl&lt;S&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for Box&lt;S, Global&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> + Unpin + ?Sized,</span></h3></section></summary><div class="impl-items"><section id="method.is_terminated-2" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/futures_core/stream.rs.html#231">source</a><a href="#method.is_terminated-2" class="anchor"></a><h4 class="code-header">fn <a href="#tymethod.is_terminated" class="fnname">is_terminated</a>(&amp;self) -&gt; bool</h4></section></div></details><h2 id="implementors" class="small-section-header">Implementors<a href="#implementors" class="anchor"></a></h2><div id="implementors-list"><section id="impl-FusedStream-for-Either%3CA%2C%20B%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/future/either.rs.html#150">source</a><a href="#impl-FusedStream-for-Either%3CA%2C%20B%3E" class="anchor"></a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="enum" href="../future/enum.Either.html" title="enum futures::future::Either">Either</a>&lt;A, B&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>&lt;Item = &lt;A as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-RepeatWith%3CF%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/repeat_with.rs.html#31">source</a><a href="#impl-FusedStream-for-RepeatWith%3CF%3E" class="anchor"></a><h3 class="code-header">impl&lt;A, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.RepeatWith.html" title="struct futures::stream::RepeatWith">RepeatWith</a>&lt;F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut() -&gt; A,</span></h3></section><section id="impl-FusedStream-for-Scan%3CSt%2C%20S%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/scan.rs.html#108">source</a><a href="#impl-FusedStream-for-Scan%3CSt%2C%20S%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;B, St, S, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Scan.html" title="struct futures::stream::Scan">Scan</a>&lt;St, S, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;mut S, &lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>&lt;Output = Option&lt;B&gt;&gt;,</span></h3></section><section id="impl-FusedStream-for-FlattenStream%3CF%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/future/future/mod.rs.html#37-43">source</a><a href="#impl-FusedStream-for-FlattenStream%3CF%3E" class="anchor"></a><h3 class="code-header">impl&lt;F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../future/struct.FlattenStream.html" title="struct futures::future::FlattenStream">FlattenStream</a>&lt;F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Flatten&lt;F, &lt;F as <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>&gt;::<a class="associatedtype" href="../future/trait.Future.html#associatedtype.Output" title="type futures::future::Future::Output">Output</a>&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>,</span></h3></section><section id="impl-FusedStream-for-IntoStream%3CF%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/future/future/mod.rs.html#55-60">source</a><a href="#impl-FusedStream-for-IntoStream%3CF%3E" class="anchor"></a><h3 class="code-header">impl&lt;F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for futures::future::<a class="struct" href="../future/struct.IntoStream.html" title="struct futures::future::IntoStream">IntoStream</a>&lt;F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="struct.Once.html" title="struct futures::stream::Once">Once</a>&lt;F&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-TryFlattenStream%3CFut%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/future/try_future/mod.rs.html#44-50">source</a><a href="#impl-FusedStream-for-TryFlattenStream%3CFut%3E" class="anchor"></a><h3 class="code-header">impl&lt;Fut&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../future/struct.TryFlattenStream.html" title="struct futures::future::TryFlattenStream">TryFlattenStream</a>&lt;Fut&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;TryFlatten&lt;Fut, &lt;Fut as <a class="trait" href="../future/trait.TryFuture.html" title="trait futures::future::TryFuture">TryFuture</a>&gt;::<a class="associatedtype" href="../future/trait.TryFuture.html#associatedtype.Ok" title="type futures::future::TryFuture::Ok">Ok</a>&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.TryFuture.html" title="trait futures::future::TryFuture">TryFuture</a>,</span></h3></section><section id="impl-FusedStream-for-FuturesOrdered%3CFut%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/futures_ordered.rs.html#229">source</a><a href="#impl-FusedStream-for-FuturesOrdered%3CFut%3E" class="anchor"></a><h3 class="code-header">impl&lt;Fut&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.FuturesOrdered.html" title="struct futures::stream::FuturesOrdered">FuturesOrdered</a>&lt;Fut&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>,</span></h3></section><section id="impl-FusedStream-for-FuturesUnordered%3CFut%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/futures_unordered/mod.rs.html#646">source</a><a href="#impl-FusedStream-for-FuturesUnordered%3CFut%3E" class="anchor"></a><h3 class="code-header">impl&lt;Fut&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.FuturesUnordered.html" title="struct futures::stream::FuturesUnordered">FuturesUnordered</a>&lt;Fut&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>,</span></h3></section><section id="impl-FusedStream-for-Once%3CFut%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/once.rs.html#63">source</a><a href="#impl-FusedStream-for-Once%3CFut%3E" class="anchor"></a><h3 class="code-header">impl&lt;Fut&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Once.html" title="struct futures::stream::Once">Once</a>&lt;Fut&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>,</span></h3></section><section id="impl-FusedStream-for-FlattenSink%3CFut%2C%20Si%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/future/try_future/mod.rs.html#53-59">source</a><a href="#impl-FusedStream-for-FlattenSink%3CFut%2C%20Si%3E" class="anchor"></a><h3 class="code-header">impl&lt;Fut, Si&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../future/struct.FlattenSink.html" title="struct futures::future::FlattenSink">FlattenSink</a>&lt;Fut, Si&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;TryFlatten&lt;Fut, Si&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-Fuse%3CS%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/fuse.rs.html#37">source</a><a href="#impl-FusedStream-for-Fuse%3CS%3E" class="anchor"></a><h3 class="code-header">impl&lt;S&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Fuse.html" title="struct futures::stream::Fuse">Fuse</a>&lt;S&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,</span></h3></section><section id="impl-FusedStream-for-PollImmediate%3CS%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/poll_immediate.rs.html#47">source</a><a href="#impl-FusedStream-for-PollImmediate%3CS%3E" class="anchor"></a><h3 class="code-header">impl&lt;S&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.PollImmediate.html" title="struct futures::stream::PollImmediate">PollImmediate</a>&lt;S&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,</span></h3></section><section id="impl-FusedStream-for-SinkMapErr%3CS%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/sink/map_err.rs.html#61">source</a><a href="#impl-FusedStream-for-SinkMapErr%3CS%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;S, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../sink/struct.SinkMapErr.html" title="struct futures::sink::SinkMapErr">SinkMapErr</a>&lt;S, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-Buffer%3CS%2C%20Item%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/sink/buffer.rs.html#59">source</a><a href="#impl-FusedStream-for-Buffer%3CS%2C%20Item%3E" class="anchor"></a><h3 class="code-header">impl&lt;S, Item&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../sink/struct.Buffer.html" title="struct futures::sink::Buffer">Buffer</a>&lt;S, Item&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../sink/trait.Sink.html" title="trait futures::sink::Sink">Sink</a>&lt;Item&gt; + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-SinkErrInto%3CS%2C%20Item%2C%20E%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/sink/err_into.rs.html#49">source</a><a href="#impl-FusedStream-for-SinkErrInto%3CS%2C%20Item%2C%20E%3E" class="anchor"></a><h3 class="code-header">impl&lt;S, Item, E&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../sink/struct.SinkErrInto.html" title="struct futures::sink::SinkErrInto">SinkErrInto</a>&lt;S, Item, E&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../sink/trait.Sink.html" title="trait futures::sink::Sink">Sink</a>&lt;Item&gt; + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;S as <a class="trait" href="../sink/trait.Sink.html" title="trait futures::sink::Sink">Sink</a>&lt;Item&gt;&gt;::<a class="associatedtype" href="../sink/trait.Sink.html#associatedtype.Error" title="type futures::sink::Sink::Error">Error</a>: Into&lt;E&gt;,</span></h3></section><section id="impl-FusedStream-for-WithFlatMap%3CS%2C%20Item%2C%20U%2C%20St%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/sink/with_flat_map.rs.html#87">source</a><a href="#impl-FusedStream-for-WithFlatMap%3CS%2C%20Item%2C%20U%2C%20St%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;S, Item, U, St, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../sink/struct.WithFlatMap.html" title="struct futures::sink::WithFlatMap">WithFlatMap</a>&lt;S, Item, U, St, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> + <a class="trait" href="../sink/trait.Sink.html" title="trait futures::sink::Sink">Sink</a>&lt;Item&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(U) -&gt; St,<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&lt;Item = Result&lt;Item, &lt;S as <a class="trait" href="../sink/trait.Sink.html" title="trait futures::sink::Sink">Sink</a>&lt;Item&gt;&gt;::<a class="associatedtype" href="../sink/trait.Sink.html#associatedtype.Error" title="type futures::sink::Sink::Error">Error</a>&gt;&gt;,</span></h3></section><section id="impl-FusedStream-for-Chain%3CSt1%2C%20St2%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/chain.rs.html#30">source</a><a href="#impl-FusedStream-for-Chain%3CSt1%2C%20St2%3E" class="anchor"></a><h3 class="code-header">impl&lt;St1, St2&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Chain.html" title="struct futures::stream::Chain">Chain</a>&lt;St1, St2&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St1: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;St2: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>&lt;Item = &lt;St1 as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-Select%3CSt1%2C%20St2%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/select.rs.html#96">source</a><a href="#impl-FusedStream-for-Select%3CSt1%2C%20St2%3E" class="anchor"></a><h3 class="code-header">impl&lt;St1, St2&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Select.html" title="struct futures::stream::Select">Select</a>&lt;St1, St2&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St1: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;St2: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&lt;Item = &lt;St1 as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-Zip%3CSt1%2C%20St2%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/zip.rs.html#61">source</a><a href="#impl-FusedStream-for-Zip%3CSt1%2C%20St2%3E" class="anchor"></a><h3 class="code-header">impl&lt;St1, St2&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Zip.html" title="struct futures::stream::Zip">Zip</a>&lt;St1, St2&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St1: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;St2: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,</span></h3></section><section id="impl-FusedStream-for-SelectWithStrategy%3CSt1%2C%20St2%2C%20Clos%2C%20State%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/select_with_strategy.rs.html#194">source</a><a href="#impl-FusedStream-for-SelectWithStrategy%3CSt1%2C%20St2%2C%20Clos%2C%20State%3E" class="anchor"></a><h3 class="code-header">impl&lt;St1, St2, Clos, State&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.SelectWithStrategy.html" title="struct futures::stream::SelectWithStrategy">SelectWithStrategy</a>&lt;St1, St2, Clos, State&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St1: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;St2: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&lt;Item = &lt;St1 as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;Clos: FnMut(&amp;mut State) -&gt; <a class="enum" href="enum.PollNext.html" title="enum futures::stream::PollNext">PollNext</a>,</span></h3></section><section id="impl-FusedStream-for-BufferUnordered%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/buffer_unordered.rs.html#100">source</a><a href="#impl-FusedStream-for-BufferUnordered%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.BufferUnordered.html" title="struct futures::stream::BufferUnordered">BufferUnordered</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>,</span></h3></section><section id="impl-FusedStream-for-Buffered%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/buffered.rs.html#98">source</a><a href="#impl-FusedStream-for-Buffered%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Buffered.html" title="struct futures::stream::Buffered">Buffered</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>,</span></h3></section><section id="impl-FusedStream-for-CatchUnwind%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/catch_unwind.rs.html#57">source</a><a href="#impl-FusedStream-for-CatchUnwind%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.CatchUnwind.html" title="struct futures::stream::CatchUnwind">CatchUnwind</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> + UnwindSafe,</span></h3></section><section id="impl-FusedStream-for-Chunks%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/chunks.rs.html#88">source</a><a href="#impl-FusedStream-for-Chunks%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Chunks.html" title="struct futures::stream::Chunks">Chunks</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-Cycle%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/cycle.rs.html#56">source</a><a href="#impl-FusedStream-for-Cycle%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Cycle.html" title="struct futures::stream::Cycle">Cycle</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: Clone + <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,</span></h3></section><section id="impl-FusedStream-for-Enumerate%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/enumerate.rs.html#28">source</a><a href="#impl-FusedStream-for-Enumerate%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Enumerate.html" title="struct futures::stream::Enumerate">Enumerate</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-Flatten%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/mod.rs.html#65-71">source</a><a href="#impl-FusedStream-for-Flatten%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Flatten.html" title="struct futures::stream::Flatten">Flatten</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Flatten&lt;St, &lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,</span></h3></section><section id="impl-FusedStream-for-IntoStream%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/into_stream.rs.html#27">source</a><a href="#impl-FusedStream-for-IntoStream%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for futures::stream::<a class="struct" href="struct.IntoStream.html" title="struct futures::stream::IntoStream">IntoStream</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-Peekable%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/peek.rs.html#189">source</a><a href="#impl-FusedStream-for-Peekable%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Peekable.html" title="struct futures::stream::Peekable">Peekable</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,</span></h3></section><section id="impl-FusedStream-for-ReadyChunks%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/ready_chunks.rs.html#78">source</a><a href="#impl-FusedStream-for-ReadyChunks%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.ReadyChunks.html" title="struct futures::stream::ReadyChunks">ReadyChunks</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,</span></h3></section><section id="impl-FusedStream-for-SelectAll%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/select_all.rs.html#112">source</a><a href="#impl-FusedStream-for-SelectAll%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.SelectAll.html" title="struct futures::stream::SelectAll">SelectAll</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a> + Unpin,</span></h3></section><section id="impl-FusedStream-for-Skip%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/skip.rs.html#28">source</a><a href="#impl-FusedStream-for-Skip%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Skip.html" title="struct futures::stream::Skip">Skip</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-Take%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/take.rs.html#68">source</a><a href="#impl-FusedStream-for-Take%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Take.html" title="struct futures::stream::Take">Take</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-TryChunks%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/try_chunks.rs.html#96">source</a><a href="#impl-FusedStream-for-TryChunks%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TryChunks.html" title="struct futures::stream::TryChunks">TryChunks</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-TryFlatten%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/try_flatten.rs.html#37">source</a><a href="#impl-FusedStream-for-TryFlatten%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TryFlatten.html" title="struct futures::stream::TryFlatten">TryFlatten</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a>: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a> as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>: From&lt;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-TryFlattenUnordered%3CSt%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/try_flatten_unordered.rs.html#19-36">source</a><a href="#impl-FusedStream-for-TryFlattenUnordered%3CSt%3E" class="anchor"></a><h3 class="code-header">impl&lt;St&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TryFlattenUnordered.html" title="struct futures::stream::TryFlattenUnordered">TryFlattenUnordered</a>&lt;St&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;FlattenUnorderedWithFlowController&lt;NestedTryStreamIntoEitherTryStream&lt;St&gt;, PropagateBaseStreamError&lt;St&gt;&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a>: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + Unpin,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a> as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>: From&lt;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-ErrInto%3CSt%2C%20E%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/mod.rs.html#29-34">source</a><a href="#impl-FusedStream-for-ErrInto%3CSt%2C%20E%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, E&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.ErrInto.html" title="struct futures::stream::ErrInto">ErrInto</a>&lt;St, E&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="struct.MapErr.html" title="struct futures::stream::MapErr">MapErr</a>&lt;St, IntoFn&lt;E&gt;&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-Inspect%3CSt%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/mod.rs.html#110-115">source</a><a href="#impl-FusedStream-for-Inspect%3CSt%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Inspect.html" title="struct futures::stream::Inspect">Inspect</a>&lt;St, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="struct.Map.html" title="struct futures::stream::Map">Map</a>&lt;St, InspectFn&lt;F&gt;&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-InspectErr%3CSt%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/mod.rs.html#43-48">source</a><a href="#impl-FusedStream-for-InspectErr%3CSt%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.InspectErr.html" title="struct futures::stream::InspectErr">InspectErr</a>&lt;St, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="struct.Inspect.html" title="struct futures::stream::Inspect">Inspect</a>&lt;<a class="struct" href="struct.IntoStream.html" title="struct futures::stream::IntoStream">IntoStream</a>&lt;St&gt;, InspectErrFn&lt;F&gt;&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-InspectOk%3CSt%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/mod.rs.html#36-41">source</a><a href="#impl-FusedStream-for-InspectOk%3CSt%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.InspectOk.html" title="struct futures::stream::InspectOk">InspectOk</a>&lt;St, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="struct.Inspect.html" title="struct futures::stream::Inspect">Inspect</a>&lt;<a class="struct" href="struct.IntoStream.html" title="struct futures::stream::IntoStream">IntoStream</a>&lt;St&gt;, InspectOkFn&lt;F&gt;&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-Map%3CSt%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/map.rs.html#39">source</a><a href="#impl-FusedStream-for-Map%3CSt%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Map.html" title="struct futures::stream::Map">Map</a>&lt;St, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut1&lt;&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-MapErr%3CSt%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/mod.rs.html#61-66">source</a><a href="#impl-FusedStream-for-MapErr%3CSt%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.MapErr.html" title="struct futures::stream::MapErr">MapErr</a>&lt;St, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="struct.Map.html" title="struct futures::stream::Map">Map</a>&lt;<a class="struct" href="struct.IntoStream.html" title="struct futures::stream::IntoStream">IntoStream</a>&lt;St&gt;, MapErrFn&lt;F&gt;&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-MapOk%3CSt%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/mod.rs.html#54-59">source</a><a href="#impl-FusedStream-for-MapOk%3CSt%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.MapOk.html" title="struct futures::stream::MapOk">MapOk</a>&lt;St, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="struct.Map.html" title="struct futures::stream::Map">Map</a>&lt;<a class="struct" href="struct.IntoStream.html" title="struct futures::stream::IntoStream">IntoStream</a>&lt;St&gt;, MapOkFn&lt;F&gt;&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-TakeUntil%3CSt%2C%20Fut%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/take_until.rs.html#150">source</a><a href="#impl-FusedStream-for-TakeUntil%3CSt%2C%20Fut%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TakeUntil.html" title="struct futures::stream::TakeUntil">TakeUntil</a>&lt;St, Fut&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>,</span></h3></section><section id="impl-FusedStream-for-AndThen%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/and_then.rs.html#85">source</a><a href="#impl-FusedStream-for-AndThen%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.AndThen.html" title="struct futures::stream::AndThen">AndThen</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.TryFuture.html" title="trait futures::future::TryFuture">TryFuture</a>&lt;Error = &lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-Filter%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/filter.rs.html#56">source</a><a href="#impl-FusedStream-for-Filter%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Filter.html" title="struct futures::stream::Filter">Filter</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>&lt;Output = bool&gt;,</span></h3></section><section id="impl-FusedStream-for-OrElse%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/or_else.rs.html#89">source</a><a href="#impl-FusedStream-for-OrElse%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.OrElse.html" title="struct futures::stream::OrElse">OrElse</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.TryFuture.html" title="trait futures::future::TryFuture">TryFuture</a>&lt;Ok = &lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-SkipWhile%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/skip_while.rs.html#54">source</a><a href="#impl-FusedStream-for-SkipWhile%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.SkipWhile.html" title="struct futures::stream::SkipWhile">SkipWhile</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>&lt;Output = bool&gt;,</span></h3></section><section id="impl-FusedStream-for-TakeWhile%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/take_while.rs.html#104">source</a><a href="#impl-FusedStream-for-TakeWhile%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TakeWhile.html" title="struct futures::stream::TakeWhile">TakeWhile</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>&lt;Output = bool&gt;,</span></h3></section><section id="impl-FusedStream-for-Then%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/then.rs.html#45">source</a><a href="#impl-FusedStream-for-Then%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Then.html" title="struct futures::stream::Then">Then</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>,</span></h3></section><section id="impl-FusedStream-for-TryFilter%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/try_filter.rs.html#53">source</a><a href="#impl-FusedStream-for-TryFilter%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TryFilter.html" title="struct futures::stream::TryFilter">TryFilter</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>&lt;Output = bool&gt;,</span></h3></section><section id="impl-FusedStream-for-TrySkipWhile%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/try_skip_while.rs.html#100">source</a><a href="#impl-FusedStream-for-TrySkipWhile%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TrySkipWhile.html" title="struct futures::stream::TrySkipWhile">TrySkipWhile</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.TryFuture.html" title="trait futures::future::TryFuture">TryFuture</a>&lt;Ok = bool, Error = &lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-TryTakeWhile%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/try_take_while.rs.html#109">source</a><a href="#impl-FusedStream-for-TryTakeWhile%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TryTakeWhile.html" title="struct futures::stream::TryTakeWhile">TryTakeWhile</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.TryFuture.html" title="trait futures::future::TryFuture">TryFuture</a>&lt;Ok = bool, Error = &lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>&gt;,</span></h3></section><section id="impl-FusedStream-for-FilterMap%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/filter_map.rs.html#50">source</a><a href="#impl-FusedStream-for-FilterMap%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F, T&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.FilterMap.html" title="struct futures::stream::FilterMap">FilterMap</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut1&lt;&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>, Output = Fut&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>&lt;Output = Option&lt;T&gt;&gt;,</span></h3></section><section id="impl-FusedStream-for-TryFilterMap%3CSt%2C%20Fut%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/try_stream/try_filter_map.rs.html#45">source</a><a href="#impl-FusedStream-for-TryFilterMap%3CSt%2C%20Fut%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, Fut, F, T&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.TryFilterMap.html" title="struct futures::stream::TryFilterMap">TryFilterMap</a>&lt;St, Fut, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a> + <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.TryFuture.html" title="trait futures::future::TryFuture">TryFuture</a>&lt;Ok = Option&lt;T&gt;, Error = &lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Error" title="type futures::stream::TryStream::Error">Error</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&lt;St as <a class="trait" href="trait.TryStream.html" title="trait futures::stream::TryStream">TryStream</a>&gt;::<a class="associatedtype" href="trait.TryStream.html#associatedtype.Ok" title="type futures::stream::TryStream::Ok">Ok</a>) -&gt; Fut,</span></h3></section><section id="impl-FusedStream-for-FlatMap%3CSt%2C%20U%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/mod.rs.html#121-126">source</a><a href="#impl-FusedStream-for-FlatMap%3CSt%2C%20U%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, U, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.FlatMap.html" title="struct futures::stream::FlatMap">FlatMap</a>&lt;St, U, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Flatten&lt;<a class="struct" href="struct.Map.html" title="struct futures::stream::Map">Map</a>&lt;St, F&gt;, U&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,</span></h3></section><section id="impl-FusedStream-for-FlatMapUnordered%3CSt%2C%20U%2C%20F%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/stream/mod.rs.html#211-217">source</a><a href="#impl-FusedStream-for-FlatMapUnordered%3CSt%2C%20U%2C%20F%3E" class="anchor"></a><h3 class="code-header">impl&lt;St, U, F&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.FlatMapUnordered.html" title="struct futures::stream::FlatMapUnordered">FlatMapUnordered</a>&lt;St, U, F&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;FlattenUnorderedWithFlowController&lt;<a class="struct" href="struct.Map.html" title="struct futures::stream::Map">Map</a>&lt;St, F&gt;, ()&gt;: <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;St: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a> + Unpin,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&lt;St as <a class="trait" href="trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="associatedtype" href="trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a>) -&gt; U,</span></h3></section><section id="impl-FusedStream-for-Receiver%3CT%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_channel/mpsc/mod.rs.html#1053">source</a><a href="#impl-FusedStream-for-Receiver%3CT%3E" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../channel/mpsc/struct.Receiver.html" title="struct futures::channel::mpsc::Receiver">Receiver</a>&lt;T&gt;</h3></section><section id="impl-FusedStream-for-UnboundedReceiver%3CT%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_channel/mpsc/mod.rs.html#1205">source</a><a href="#impl-FusedStream-for-UnboundedReceiver%3CT%3E" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="../channel/mpsc/struct.UnboundedReceiver.html" title="struct futures::channel::mpsc::UnboundedReceiver">UnboundedReceiver</a>&lt;T&gt;</h3></section><section id="impl-FusedStream-for-Empty%3CT%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/empty.rs.html#23">source</a><a href="#impl-FusedStream-for-Empty%3CT%3E" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Empty.html" title="struct futures::stream::Empty">Empty</a>&lt;T&gt;</h3></section><section id="impl-FusedStream-for-Pending%3CT%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/pending.rs.html#23">source</a><a href="#impl-FusedStream-for-Pending%3CT%3E" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Pending.html" title="struct futures::stream::Pending">Pending</a>&lt;T&gt;</h3></section><section id="impl-FusedStream-for-Repeat%3CT%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/repeat.rs.html#51">source</a><a href="#impl-FusedStream-for-Repeat%3CT%3E" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Repeat.html" title="struct futures::stream::Repeat">Repeat</a>&lt;T&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: Clone,</span></h3></section><section id="impl-FusedStream-for-Unfold%3CT%2C%20F%2C%20Fut%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/futures_util/stream/unfold.rs.html#78">source</a><a href="#impl-FusedStream-for-Unfold%3CT%2C%20F%2C%20Fut%3E" class="anchor"></a><h3 class="code-header">impl&lt;T, F, Fut, Item&gt; <a class="trait" href="trait.FusedStream.html" title="trait futures::stream::FusedStream">FusedStream</a> for <a class="struct" href="struct.Unfold.html" title="struct futures::stream::Unfold">Unfold</a>&lt;T, F, Fut&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(T) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../future/trait.Future.html" title="trait futures::future::Future">Future</a>&lt;Output = Option&lt;(Item, T)&gt;&gt;,</span></h3></section></div><script src="../../implementors/futures_core/stream/trait.FusedStream.js" data-ignore-extern-crates="core,futures_channel,futures_util,alloc" async></script></section></div></main><div id="rustdoc-vars" data-root-path="../../" data-current-crate="futures" data-themes="ayu,dark,light" data-resource-suffix="" data-rustdoc-version="1.66.0-nightly (5c8bff74b 2022-10-21)" ></div></body></html>