1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 16:52:59 +01:00
actix-website/static/api/actix-web/stable/actix_web/struct.HttpContext.html
2018-07-26 10:53:41 -07:00

40 lines
38 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 `HttpContext` struct in crate `actix_web`."><meta name="keywords" content="rust, rustlang, rust-lang, HttpContext"><title>actix_web::HttpContext - 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 HttpContext</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.create">create</a><a href="#method.with_factory">with_factory</a><a href="#method.state">state</a><a href="#method.request">request</a><a href="#method.write">write</a><a href="#method.write_eof">write_eof</a><a href="#method.drain">drain</a><a href="#method.connected">connected</a><a href="#method.handle">handle</a></div><a class="sidebar-title" href="#implementations">Trait Implementations</a><div class="sidebar-links"><a href="#impl-ActorContext">ActorContext</a><a href="#impl-AsyncContext%3CA%3E">AsyncContext&lt;A&gt;</a><a href="#impl-AsyncContextParts%3CA%3E">AsyncContextParts&lt;A&gt;</a><a href="#impl-ToEnvelope%3CA%2C%20M%3E">ToEnvelope&lt;A, M&gt;</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></p><script>window.sidebarCurrent = {name: 'HttpContext', 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 class="struct" href=''>HttpContext</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><a class='srclink' href='../src/actix_web/context.rs.html#42-50' title='goto source code'>[src]</a></span></h1><div class="docblock type-decl"><pre class='rust struct'>pub struct HttpContext&lt;A, S&nbsp;=&nbsp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</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>&lt;Context = <a class="struct" href="../actix_web/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&gt;&gt;,&nbsp;</span> { /* fields omitted */ }</pre></div><div class='docblock'><p>Execution context for http actors</p>
</div>
<h2 id='methods' class='small-section-header'>
Methods<a href='#methods' class='anchor'></a>
</h2>
<h3 id='impl' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;A, S:&nbsp;'static&gt; <a class="struct" href="../actix_web/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&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>&lt;Context = Self&gt;,&nbsp;</span></code><a href='#impl' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#102-135' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><div class='impl-items'><h4 id='method.create' class="method"><span id='create.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.create' class='fnname'>create</a>(req: <a class="struct" href="../actix_web/struct.HttpRequest.html" title="struct actix_web::HttpRequest">HttpRequest</a>&lt;S&gt;, actor: A) -&gt; <a class="enum" href="../actix_web/enum.Body.html" title="enum actix_web::Body">Body</a></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#108-117' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Create a new HTTP Context from a request and an actor</p>
</div><h4 id='method.with_factory' class="method"><span id='with_factory.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.with_factory' class='fnname'>with_factory</a>&lt;F&gt;(req: <a class="struct" href="../actix_web/struct.HttpRequest.html" title="struct actix_web::HttpRequest">HttpRequest</a>&lt;S&gt;, f: F) -&gt; <a class="enum" href="../actix_web/enum.Body.html" title="enum actix_web::Body">Body</a> <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.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self) -&gt; A + 'static,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#120-134' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Create a new HTTP Context</p>
</div></div><h3 id='impl-1' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;A, S&gt; <a class="struct" href="../actix_web/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&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>&lt;Context = Self&gt;,&nbsp;</span></code><a href='#impl-1' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#137-198' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><div class='impl-items'><h4 id='method.state' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a mut </a>R</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a mut </a>R</h3><code class="content"><span class="where fmt-newline">impl&lt;'a, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/std/io/trait.Read.html" title="trait std::io::Read">Read</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a mut </a>R <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="https://doc.rust-lang.org/nightly/std/io/trait.Read.html" title="trait std::io::Read">Read</a> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></span><span class="where fmt-newline">impl&lt;'a, W&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/std/io/trait.Write.html" title="trait std::io::Write">Write</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a mut </a>W <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;W: <a class="trait" href="https://doc.rust-lang.org/nightly/std/io/trait.Write.html" title="trait std::io::Write">Write</a> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></span><span class="where fmt-newline">impl&lt;'a, I&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a mut </a>I <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = &lt;I as <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a>&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item" title="type core::iter::iterator::Iterator::Item">Item</a>;</span></code></div></div><span id='state.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.state' class='fnname'>state</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>S</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#143-145' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Shared application state</p>
</div><h4 id='method.request' class="method"><span id='request.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.request' class='fnname'>request</a>(&amp;mut self) -&gt; &amp;mut <a class="struct" href="../actix_web/struct.HttpRequest.html" title="struct actix_web::HttpRequest">HttpRequest</a>&lt;S&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#149-151' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Incoming request</p>
</div><h4 id='method.write' class="method"><span id='write.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.write' class='fnname'>write</a>&lt;B:&nbsp;<a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../actix_web/enum.Binary.html" title="enum actix_web::Binary">Binary</a>&gt;&gt;(&amp;mut self, data: B)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#155-161' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Write payload</p>
</div><h4 id='method.write_eof' class="method"><span id='write_eof.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.write_eof' class='fnname'>write_eof</a>(&amp;mut self)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#165-167' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Indicate end of streaming payload. Also this method calls <code>Self::close</code>.</p>
</div><h4 id='method.drain' class="method"><span id='drain.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.drain' class='fnname'>drain</a>(&amp;mut self) -&gt; <a class="struct" href="../actix_web/dev/struct.Drain.html" title="struct actix_web::dev::Drain">Drain</a>&lt;A&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#170-174' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Returns drain future</p>
</div><h4 id='method.connected' class="method"><span id='connected.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.connected' class='fnname'>connected</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#178-180' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Check if connection still open</p>
</div><h4 id='method.handle' class="method"><span id='handle.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.handle' class='fnname'>handle</a>(&amp;self) -&gt; <a class="struct" href="../actix_web/actix/actix/struct.SpawnHandle.html" title="struct actix_web::actix::actix::SpawnHandle">SpawnHandle</a></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#195-197' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Handle of the running future</p>
<p>SpawnHandle is the handle returned by <code>AsyncContext::spawn()</code> method.</p>
</div></div>
<h2 id='implementations' class='small-section-header'>
Trait Implementations<a href='#implementations' class='anchor'></a>
</h2>
<div id='implementations-list'><h3 id='impl-ActorContext' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;A, S&gt; <a class="trait" href="../actix_web/actix/actix/trait.ActorContext.html" title="trait actix_web::actix::actix::ActorContext">ActorContext</a> for <a class="struct" href="../actix_web/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&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>&lt;Context = Self&gt;,&nbsp;</span></code><a href='#impl-ActorContext' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#52-65' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><div class='impl-items'><h4 id='method.stop' class="method"><span id='stop.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.ActorContext.html#tymethod.stop' class='fnname'>stop</a>(&amp;mut self)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#56-58' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Immediately stop processing incoming messages and switch to a <code>stopping</code> state <a href="../actix_web/actix/actix/trait.ActorContext.html#tymethod.stop">Read more</a></p>
</div><h4 id='method.terminate' class="method"><span id='terminate.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.ActorContext.html#tymethod.terminate' class='fnname'>terminate</a>(&amp;mut self)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#59-61' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Terminate actor execution</p>
</div><h4 id='method.state-1' class="method"><span id='state.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.ActorContext.html#tymethod.state' class='fnname'>state</a>(&amp;self) -&gt; <a class="enum" href="../actix_web/actix/actix/enum.ActorState.html" title="enum actix_web::actix::actix::ActorState">ActorState</a></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#62-64' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Actor execution state</p>
</div></div><h3 id='impl-AsyncContext%3CA%3E' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;A, S&gt; <a class="trait" href="../actix_web/actix/actix/trait.AsyncContext.html" title="trait actix_web::actix::actix::AsyncContext">AsyncContext</a>&lt;A&gt; for <a class="struct" href="../actix_web/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&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>&lt;Context = Self&gt;,&nbsp;</span></code><a href='#impl-AsyncContext%3CA%3E' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#67-100' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><div class='impl-items'><h4 id='method.spawn' class="method"><span id='spawn.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#tymethod.spawn' class='fnname'>spawn</a>&lt;F&gt;(&amp;mut self, fut: F) -&gt; <a class="struct" href="../actix_web/actix/actix/struct.SpawnHandle.html" title="struct actix_web::actix::actix::SpawnHandle">SpawnHandle</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../actix_web/actix/actix/trait.ActorFuture.html" title="trait actix_web::actix::actix::ActorFuture">ActorFuture</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, Error = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, Actor = A&gt; + 'static,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#72-77' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Spawn async future into context. Returns handle of the item, could be used for cancelling execution. <a href="../actix_web/actix/actix/trait.AsyncContext.html#tymethod.spawn">Read more</a></p>
</div><h4 id='method.wait' class="method"><span id='wait.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#tymethod.wait' class='fnname'>wait</a>&lt;F&gt;(&amp;mut self, fut: F) <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../actix_web/actix/actix/trait.ActorFuture.html" title="trait actix_web::actix::actix::ActorFuture">ActorFuture</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, Error = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, Actor = A&gt; + 'static,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#79-84' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Spawn future into the context. Stop processing any of incoming events until this future resolves. <a href="../actix_web/actix/actix/trait.AsyncContext.html#tymethod.wait">Read more</a></p>
</div><h4 id='method.cancel_future' class="method"><span id='cancel_future.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#tymethod.cancel_future' class='fnname'>cancel_future</a>(&amp;mut self, handle: <a class="struct" href="../actix_web/actix/actix/struct.SpawnHandle.html" title="struct actix_web::actix::actix::SpawnHandle">SpawnHandle</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#93-95' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Cancel future. handle is a value returned by <code>spawn</code> method.</p>
</div><h4 id='method.address' class="method"><span id='address.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#tymethod.address' class='fnname'>address</a>(&amp;self) -&gt; <a class="struct" href="../actix_web/actix/actix/struct.Addr.html" title="struct actix_web::actix::actix::Addr">Addr</a>&lt;A&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#97-99' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Return <code>Address</code> of the context</p>
</div><h4 id='tymethod.waiting' class="tymethod"><span id='waiting.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#tymethod.waiting' class='fnname'>waiting</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Check if context is paused (waiting for future completion or stopping)</p>
</div><h4 id='method.add_stream' class="method"><span id='add_stream.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#method.add_stream' class='fnname'>add_stream</a>&lt;S&gt;(&amp;mut self, fut: S) -&gt; <a class="struct" href="../actix_web/actix/actix/struct.SpawnHandle.html" title="struct actix_web::actix::actix::SpawnHandle">SpawnHandle</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../actix_web/actix/actix/trait.StreamHandler.html" title="trait actix_web::actix::actix::StreamHandler">StreamHandler</a>&lt;&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>, &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>&gt;,<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> + 'static,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>This method register stream to an actor context and allows to handle <code>Stream</code> in similar way as normal actor messages. <a href="../actix_web/actix/actix/trait.AsyncContext.html#method.add_stream">Read more</a></p>
</div><h4 id='method.add_message_stream' class="method"><span id='add_message_stream.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#method.add_message_stream' class='fnname'>add_message_stream</a>&lt;S&gt;(&amp;mut self, fut: S) <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../actix_web/actix/actix/trait.Handler.html" title="trait actix_web::actix::actix::Handler">Handler</a>&lt;&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>&gt;,<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>&lt;Error = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>&gt; + 'static,<br>&nbsp;&nbsp;&nbsp;&nbsp;&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>: <a class="trait" href="../actix_web/actix/actix/trait.Message.html" title="trait actix_web::actix::actix::Message">Message</a>,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>This method is similar to <code>add_stream</code> but it skips stream errors. <a href="../actix_web/actix/actix/trait.AsyncContext.html#method.add_message_stream">Read more</a></p>
</div><h4 id='method.notify' class="method"><span id='notify.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#method.notify' class='fnname'>notify</a>&lt;M&gt;(&amp;mut self, msg: M) <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../actix_web/actix/actix/trait.Handler.html" title="trait actix_web::actix::actix::Handler">Handler</a>&lt;M&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;M: <a class="trait" href="../actix_web/actix/actix/trait.Message.html" title="trait actix_web::actix::actix::Message">Message</a> + 'static,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Send message <code>msg</code> to self.</p>
</div><h4 id='method.notify_later' class="method"><span id='notify_later.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#method.notify_later' class='fnname'>notify_later</a>&lt;M&gt;(&amp;mut self, msg: M, after: <a class="struct" href="https://doc.rust-lang.org/nightly/core/time/struct.Duration.html" title="struct core::time::Duration">Duration</a>) -&gt; <a class="struct" href="../actix_web/actix/actix/struct.SpawnHandle.html" title="struct actix_web::actix::actix::SpawnHandle">SpawnHandle</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../actix_web/actix/actix/trait.Handler.html" title="trait actix_web::actix::actix::Handler">Handler</a>&lt;M&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;M: <a class="trait" href="../actix_web/actix/actix/trait.Message.html" title="trait actix_web::actix::actix::Message">Message</a> + 'static,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Send message <code>msg</code> to self after specified period of time. Returns spawn handle which could be used for cancellation. Notification get cancelled if context's stop method get called. <a href="../actix_web/actix/actix/trait.AsyncContext.html#method.notify_later">Read more</a></p>
</div><h4 id='method.run_later' class="method"><span id='run_later.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#method.run_later' class='fnname'>run_later</a>&lt;F&gt;(&amp;mut self, dur: <a class="struct" href="https://doc.rust-lang.org/nightly/core/time/struct.Duration.html" title="struct core::time::Duration">Duration</a>, f: F) -&gt; <a class="struct" href="../actix_web/actix/actix/struct.SpawnHandle.html" title="struct actix_web::actix::actix::SpawnHandle">SpawnHandle</a> <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.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>A, &amp;mut &lt;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>) + 'static,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Execute closure after specified period of time within same Actor and Context. Execution get cancelled if context's stop method get called. <a href="../actix_web/actix/actix/trait.AsyncContext.html#method.run_later">Read more</a></p>
</div><h4 id='method.run_interval' class="method"><span id='run_interval.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/trait.AsyncContext.html#method.run_interval' class='fnname'>run_interval</a>&lt;F&gt;(&amp;mut self, dur: <a class="struct" href="https://doc.rust-lang.org/nightly/core/time/struct.Duration.html" title="struct core::time::Duration">Duration</a>, f: F) -&gt; <a class="struct" href="../actix_web/actix/actix/struct.SpawnHandle.html" title="struct actix_web::actix::actix::SpawnHandle">SpawnHandle</a> <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="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>A, &amp;mut &lt;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>) + 'static,&nbsp;</span></code></td><td></td></tr></tbody></table></span></h4><div class='docblock'><p>Spawns job to execute closure with specified interval</p>
</div></div><h3 id='impl-AsyncContextParts%3CA%3E' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;A, S&gt; <a class="trait" href="../actix_web/actix/actix/dev/trait.AsyncContextParts.html" title="trait actix_web::actix::actix::dev::AsyncContextParts">AsyncContextParts</a>&lt;A&gt; for <a class="struct" href="../actix_web/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&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>&lt;Context = Self&gt;,&nbsp;</span></code><a href='#impl-AsyncContextParts%3CA%3E' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#200-207' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><div class='impl-items'><h4 id='method.parts' class="method"><span id='parts.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/dev/trait.AsyncContextParts.html#tymethod.parts' class='fnname'>parts</a>(&amp;mut self) -&gt; &amp;mut <a class="struct" href="../actix_web/actix/actix/dev/struct.ContextParts.html" title="struct actix_web::actix::actix::dev::ContextParts">ContextParts</a>&lt;A&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#204-206' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div><h3 id='impl-ToEnvelope%3CA%2C%20M%3E' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;A, M, S&gt; <a class="trait" href="../actix_web/actix/actix/dev/trait.ToEnvelope.html" title="trait actix_web::actix::actix::dev::ToEnvelope">ToEnvelope</a>&lt;A, M&gt; for <a class="struct" href="../actix_web/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&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>&lt;Context = <a class="struct" href="../actix_web/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&gt;&gt; + <a class="trait" href="../actix_web/actix/actix/trait.Handler.html" title="trait actix_web::actix::actix::Handler">Handler</a>&lt;M&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;M: <a class="trait" href="../actix_web/actix/actix/trait.Message.html" title="trait actix_web::actix::actix::Message">Message</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> + 'static,<br>&nbsp;&nbsp;&nbsp;&nbsp;M::<a class="type" href="../actix_web/actix/actix/trait.Message.html#associatedtype.Result" title="type actix_web::actix::actix::Message::Result">Result</a>: <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-ToEnvelope%3CA%2C%20M%3E' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#256-265' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><div class='impl-items'><h4 id='method.pack' class="method"><span id='pack.v' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../actix_web/actix/actix/dev/trait.ToEnvelope.html#tymethod.pack' class='fnname'>pack</a>(msg: M, tx: <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="https://docs.rs/futures/0.1/futures/sync/oneshot/struct.Sender.html" title="struct futures::sync::oneshot::Sender">Sender</a>&lt;M::<a class="type" href="../actix_web/actix/actix/trait.Message.html#associatedtype.Result" title="type actix_web::actix::actix::Message::Result">Result</a>&gt;&gt;) -&gt; <a class="struct" href="../actix_web/actix/actix/dev/struct.Envelope.html" title="struct actix_web::actix::actix::dev::Envelope">Envelope</a>&lt;A&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/context.rs.html#262-264' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Pack message into suitable envelope</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;A, S&nbsp;=&nbsp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</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/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&gt;</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;A, S&nbsp;=&nbsp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</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/struct.HttpContext.html" title="struct actix_web::HttpContext">HttpContext</a>&lt;A, S&gt;</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>