1
0
mirror of https://github.com/actix/actix-website synced 2025-03-16 13:12:42 +01:00
2018-07-21 04:09:47 -07:00

23 lines
25 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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="API documentation for the Rust `StreamWrap` struct in crate `actix_web`."><meta name="keywords" content="rust, rustlang, rust-lang, StreamWrap"><title>actix_web::actix::fut::StreamWrap - Rust</title><link rel="stylesheet" type="text/css" href="../../../normalize.css"><link rel="stylesheet" type="text/css" href="../../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../../dark.css"><link rel="stylesheet" type="text/css" href="../../../light.css" id="themeStyle"><script src="../../../storage.js"></script></head><body class="rustdoc struct"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">&#9776;</div><p class='location'>Struct StreamWrap</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#implementations">Trait Implementations</a><div class="sidebar-links"><a href="#impl-ActorStream">ActorStream</a></div><a class="sidebar-title" href="#synthetic-implementations">Auto Trait Implementations</a><div class="sidebar-links"><a href="#impl-Send">Send</a><a href="#impl-Sync">Sync</a></div></div><p class='location'><a href='../../index.html'>actix_web</a>::<wbr><a href='../index.html'>actix</a>::<wbr><a href='index.html'>fut</a></p><script>window.sidebarCurrent = {name: 'StreamWrap', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../../../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../../../theme.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><input class="search-input" name="search" autocomplete="off" placeholder="Click or press S to search, ? for more options…" type="search"><a id="settings-menu" href="../../../settings.html"><img src="../../../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='in-band'>Struct <a href='../../index.html'>actix_web</a>::<wbr><a href='../index.html'>actix</a>::<wbr><a href='index.html'>fut</a>::<wbr><a class="struct" href=''>StreamWrap</a></span><span class='out-of-band'><span id='render-detail'><a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class='inner'>&#x2212;</span>]</a></span></span></h1><div class="docblock type-decl"><pre class='rust struct'>pub struct StreamWrap&lt;S, A&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://docs.rs/futures/0.1/futures/stream/trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,&nbsp;</span> { /* fields omitted */ }</pre></div>
<h2 id='implementations' class='small-section-header'>
Trait Implementations<a href='#implementations' class='anchor'></a>
</h2>
<div id='implementations-list'><h3 id='impl-ActorStream' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;S, A&gt; <a class="trait" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html" title="trait actix_web::actix::actix::dev::ActorStream">ActorStream</a> for <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamWrap.html" title="struct actix_web::actix::actix::dev::fut::StreamWrap">StreamWrap</a>&lt;S, A&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../../../actix_web/actix/actix/trait.Actor.html" title="trait actix_web::actix::actix::Actor">Actor</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://docs.rs/futures/0.1/futures/stream/trait.Stream.html" title="trait futures::stream::Stream">Stream</a>,&nbsp;</span></code><a href='#impl-ActorStream' class='anchor'></a></span></td><td><span class='out-of-band'></span></td></tr></tbody></table></h3><div class='impl-items'><h4 id='associatedtype.Item' class="type"><span id='Item.t' class='invisible'><code>type <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Item' class="type">Item</a> = &lt;S as <a class="trait" href="https://docs.rs/futures/0.1/futures/stream/trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="type" href="https://docs.rs/futures/0.1/futures/stream/trait.Stream.html#associatedtype.Item" title="type futures::stream::Stream::Item">Item</a></code></span></h4>
<div class='docblock'><p>The type of item this stream will yield on success.</p>
</div><h4 id='associatedtype.Error' class="type"><span id='Error.t' class='invisible'><code>type <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Error' class="type">Error</a> = &lt;S as <a class="trait" href="https://docs.rs/futures/0.1/futures/stream/trait.Stream.html" title="trait futures::stream::Stream">Stream</a>&gt;::<a class="type" href="https://docs.rs/futures/0.1/futures/stream/trait.Stream.html#associatedtype.Error" title="type futures::stream::Stream::Error">Error</a></code></span></h4>
<div class='docblock'><p>The type of error this stream may generate.</p>
</div><h4 id='associatedtype.Actor' class="type"><span id='Actor.t' class='invisible'><code>type <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor' class="type">Actor</a> = A</code></span></h4>
<div class='docblock'><p>The actor within which this stream runs.</p>
</div><h4 id='method.poll' class="method"><span id='poll.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#tymethod.poll' class='fnname'>poll</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut &lt;<a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamWrap.html" title="struct actix_web::actix::actix::dev::fut::StreamWrap">StreamWrap</a>&lt;S, A&gt; as <a class="trait" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html" title="trait actix_web::actix::actix::dev::ActorStream">ActorStream</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut &lt;&lt;<a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamWrap.html" title="struct actix_web::actix::actix::dev::fut::StreamWrap">StreamWrap</a>&lt;S, A&gt; as <a class="trait" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html" title="trait actix_web::actix::actix::dev::ActorStream">ActorStream</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a> as <a class="trait" href="../../../actix_web/actix/actix/trait.Actor.html" title="trait actix_web::actix::actix::Actor">Actor</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/trait.Actor.html#associatedtype.Context" title="type actix_web::actix::actix::Actor::Context">Context</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="enum" href="https://docs.rs/futures/0.1/futures/poll/enum.Async.html" title="enum futures::poll::Async">Async</a>&lt;<a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&lt;<a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamWrap.html" title="struct actix_web::actix::actix::dev::fut::StreamWrap">StreamWrap</a>&lt;S, A&gt; as <a class="trait" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html" title="trait actix_web::actix::actix::dev::ActorStream">ActorStream</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Item" title="type actix_web::actix::actix::dev::ActorStream::Item">Item</a>&gt;&gt;, &lt;<a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamWrap.html" title="struct actix_web::actix::actix::dev::fut::StreamWrap">StreamWrap</a>&lt;S, A&gt; as <a class="trait" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html" title="trait actix_web::actix::actix::dev::ActorStream">ActorStream</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Error" title="type actix_web::actix::actix::dev::ActorStream::Error">Error</a>&gt;</code></td><td></td></tr></tbody></table></span></h4><h4 id='method.map' class="method"><span id='map.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.map' class='fnname'>map</a>&lt;U, F&gt;(self, f: F) -&gt; <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamMap.html" title="struct actix_web::actix::actix::dev::fut::StreamMap">StreamMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Item" title="type actix_web::actix::actix::dev::ActorStream::Item">Item</a>, &amp;mut Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>, &amp;mut &lt;Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a> as <a class="trait" href="../../../actix_web/actix/actix/trait.Actor.html" title="trait actix_web::actix::actix::Actor">Actor</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/trait.Actor.html#associatedtype.Context" title="type actix_web::actix::actix::Actor::Context">Context</a>) -&gt; U,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Converts a stream of type <code>T</code> to a stream of type <code>U</code>.</p>
</div><h4 id='method.map_err' class="method"><span id='map_err.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.map_err' class='fnname'>map_err</a>&lt;E, F&gt;(self, f: F) -&gt; <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamMapErr.html" title="struct actix_web::actix::actix::dev::fut::StreamMapErr">StreamMapErr</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Error" title="type actix_web::actix::actix::dev::ActorStream::Error">Error</a>, &amp;mut Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>, &amp;mut &lt;Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a> as <a class="trait" href="../../../actix_web/actix/actix/trait.Actor.html" title="trait actix_web::actix::actix::Actor">Actor</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/trait.Actor.html#associatedtype.Context" title="type actix_web::actix::actix::Actor::Context">Context</a>) -&gt; E,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Converts a stream of error type <code>T</code> to a stream of error type <code>E</code>.</p>
</div><h4 id='method.then' class="method"><span id='then.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.then' class='fnname'>then</a>&lt;F, U&gt;(self, f: F) -&gt; <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamThen.html" title="struct actix_web::actix::actix::dev::fut::StreamThen">StreamThen</a>&lt;Self, F, U&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(<a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Item" title="type actix_web::actix::actix::dev::ActorStream::Item">Item</a>, Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Error" title="type actix_web::actix::actix::dev::ActorStream::Error">Error</a>&gt;, &amp;mut Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>, &amp;mut &lt;Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a> as <a class="trait" href="../../../actix_web/actix/actix/trait.Actor.html" title="trait actix_web::actix::actix::Actor">Actor</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/trait.Actor.html#associatedtype.Context" title="type actix_web::actix::actix::Actor::Context">Context</a>) -&gt; U,<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="../../../actix_web/actix/actix/dev/fut/trait.IntoActorFuture.html" title="trait actix_web::actix::actix::dev::fut::IntoActorFuture">IntoActorFuture</a>&lt;Actor = Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>&gt;,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Chain on a computation for when a value is ready, passing the resulting item to the provided closure <code>f</code>. <a href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.then">Read more</a></p>
</div><h4 id='method.and_then' class="method"><span id='and_then.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.and_then' class='fnname'>and_then</a>&lt;F, U&gt;(self, f: F) -&gt; <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamAndThen.html" title="struct actix_web::actix::actix::dev::fut::StreamAndThen">StreamAndThen</a>&lt;Self, F, U&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Item" title="type actix_web::actix::actix::dev::ActorStream::Item">Item</a>, &amp;mut Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>, &amp;mut &lt;Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a> as <a class="trait" href="../../../actix_web/actix/actix/trait.Actor.html" title="trait actix_web::actix::actix::Actor">Actor</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/trait.Actor.html#associatedtype.Context" title="type actix_web::actix::actix::Actor::Context">Context</a>) -&gt; U,<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="../../../actix_web/actix/actix/dev/fut/trait.IntoActorFuture.html" title="trait actix_web::actix::actix::dev::fut::IntoActorFuture">IntoActorFuture</a>&lt;Error = Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Error" title="type actix_web::actix::actix::dev::ActorStream::Error">Error</a>, Actor = Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>&gt;,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Chain on a computation for when a value is ready, passing the successful results to the provided closure <code>f</code>. <a href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.and_then">Read more</a></p>
</div><h4 id='method.fold' class="method"><span id='fold.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.fold' class='fnname'>fold</a>&lt;F, T, Fut&gt;(self, init: T, f: F) -&gt; <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamFold.html" title="struct actix_web::actix::actix::dev::fut::StreamFold">StreamFold</a>&lt;Self, F, Fut, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(T, Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Item" title="type actix_web::actix::actix::dev::ActorStream::Item">Item</a>, &amp;mut Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>, &amp;mut &lt;Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a> as <a class="trait" href="../../../actix_web/actix/actix/trait.Actor.html" title="trait actix_web::actix::actix::Actor">Actor</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/trait.Actor.html#associatedtype.Context" title="type actix_web::actix::actix::Actor::Context">Context</a>) -&gt; Fut,<br>&nbsp;&nbsp;&nbsp;&nbsp;Fut: <a class="trait" href="../../../actix_web/actix/actix/dev/fut/trait.IntoActorFuture.html" title="trait actix_web::actix::actix::dev::fut::IntoActorFuture">IntoActorFuture</a>&lt;Actor = Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Actor" title="type actix_web::actix::actix::dev::ActorStream::Actor">Actor</a>, Item = T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Error" title="type actix_web::actix::actix::dev::ActorStream::Error">Error</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;&lt;Fut as <a class="trait" href="../../../actix_web/actix/actix/dev/fut/trait.IntoActorFuture.html" title="trait actix_web::actix::actix::dev::fut::IntoActorFuture">IntoActorFuture</a>&gt;::<a class="type" href="../../../actix_web/actix/actix/dev/fut/trait.IntoActorFuture.html#associatedtype.Error" title="type actix_web::actix::actix::dev::fut::IntoActorFuture::Error">Error</a>&gt;,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Execute an accumulating computation over a stream, collecting all the values into one final result. <a href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.fold">Read more</a></p>
</div><h4 id='method.timeout' class="method"><span id='timeout.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.timeout' class='fnname'>timeout</a>(self, timeout: <a class="struct" href="https://doc.rust-lang.org/nightly/core/time/struct.Duration.html" title="struct core::time::Duration">Duration</a>, err: Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Error" title="type actix_web::actix::actix::dev::ActorStream::Error">Error</a>) -&gt; <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamTimeout.html" title="struct actix_web::actix::actix::dev::fut::StreamTimeout">StreamTimeout</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self::<a class="type" href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#associatedtype.Error" title="type actix_web::actix::actix::dev::ActorStream::Error">Error</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Add timeout to stream. <a href="../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.timeout">Read more</a></p>
</div><h4 id='method.finish' class="method"><span id='finish.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../../../actix_web/actix/actix/dev/trait.ActorStream.html#method.finish' class='fnname'>finish</a>(self) -&gt; <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamFinish.html" title="struct actix_web::actix::actix::dev::fut::StreamFinish">StreamFinish</a>&lt;Self&gt;</code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Converts a stream to a future that resolves when stream finishes.</p>
</div></div></div>
<h2 id='synthetic-implementations' class='small-section-header'>
Auto Trait Implementations<a href='#synthetic-implementations' class='anchor'></a>
</h2>
<div id='synthetic-implementations-list'>
<h3 id='impl-Send' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;S, A&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamWrap.html" title="struct actix_web::actix::actix::dev::fut::StreamWrap">StreamWrap</a>&lt;S, A&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>,&nbsp;</span></code><a href='#impl-Send' class='anchor'></a></span></td><td><span class='out-of-band'></span></td></tr></tbody></table></h3><div class='impl-items'></div><h3 id='impl-Sync' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;S, A&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="struct" href="../../../actix_web/actix/actix/dev/fut/struct.StreamWrap.html" title="struct actix_web::actix::actix::dev::fut::StreamWrap">StreamWrap</a>&lt;S, A&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a>,&nbsp;</span></code><a href='#impl-Sync' class='anchor'></a></span></td><td><span class='out-of-band'></span></td></tr></tbody></table></h3><div class='impl-items'></div></div></section><section id="search" class="content hidden"></section><section class="footer"></section><aside id="help" class="hidden"><div><h1 class="hidden">Help</h1><div class="shortcuts"><h2>Keyboard Shortcuts</h2><dl><dt><kbd>?</kbd></dt><dd>Show this help dialog</dd><dt><kbd>S</kbd></dt><dd>Focus the search field</dd><dt><kbd></kbd></dt><dd>Move up in search results</dd><dt><kbd></kbd></dt><dd>Move down in search results</dd><dt><kbd></kbd></dt><dd>Switch tab</dd><dt><kbd>&#9166;</kbd></dt><dd>Go to active search result</dd><dt><kbd>+</kbd></dt><dd>Expand all sections</dd><dt><kbd>-</kbd></dt><dd>Collapse all sections</dd></dl></div><div class="infos"><h2>Search Tricks</h2><p>Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type.</p><p>Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>.</p><p>Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>)</p><p>Search multiple things at once by splitting your query with comma (e.g. <code>str,u8</code> or <code>String,struct:Vec,test</code>)</p></div></div></aside><script>window.rootPath = "../../../";window.currentCrate = "actix_web";</script><script src="../../../aliases.js"></script><script src="../../../main.js"></script><script defer src="../../../search-index.js"></script></body></html>