mirror of
https://github.com/actix/actix-website
synced 2024-11-24 08:43:01 +01:00
139 lines
26 KiB
HTML
139 lines
26 KiB
HTML
|
<!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 `Scope` struct in crate `actix_web`."><meta name="keywords" content="rust, rustlang, rust-lang, Scope"><title>actix_web::Scope - 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">☰</div><p class='location'>Struct Scope</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.new">new</a><a href="#method.filter">filter</a><a href="#method.with_state">with_state</a><a href="#method.nested">nested</a><a href="#method.route">route</a><a href="#method.resource">resource</a><a href="#method.default_resource">default_resource</a><a href="#method.middleware">middleware</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: 'Scope', 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=''>Scope</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'>−</span>]</a></span><a class='srclink' href='../src/actix_web/scope.rs.html#51-56' title='goto source code'>[src]</a></span></h1><div class="docblock type-decl"><pre class='rust struct'>pub struct Scope<S> { /* fields omitted */ }</pre></div><div class='docblock'><p>Resources scope</p>
|
|||
|
<p>Scope is a set of resources with common root path.
|
|||
|
Scopes collect multiple paths under a common path prefix.
|
|||
|
Scope path can contain variable path segments as resources.
|
|||
|
Scope prefix is always complete path segment, i.e <code>/app</code> would
|
|||
|
be converted to a <code>/app/</code> and it would not match <code>/app</code> path.</p>
|
|||
|
<p>You can get variable path segments from <code>HttpRequest::match_info()</code>.
|
|||
|
<code>Path</code> extractor also is able to extract scope level variable segments.</p>
|
|||
|
|
|||
|
<pre class="rust rust-example-rendered">
|
|||
|
<span class="kw">use</span> <span class="ident">actix_web</span>::{<span class="ident">http</span>, <span class="ident">App</span>, <span class="ident">HttpRequest</span>, <span class="ident">HttpResponse</span>};
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">main</span>() {
|
|||
|
<span class="kw">let</span> <span class="ident">app</span> <span class="op">=</span> <span class="ident">App</span>::<span class="ident">new</span>().<span class="ident">scope</span>(<span class="string">"/{project_id}/"</span>, <span class="op">|</span><span class="ident">scope</span><span class="op">|</span> {
|
|||
|
<span class="ident">scope</span>
|
|||
|
.<span class="ident">resource</span>(<span class="string">"/path1"</span>, <span class="op">|</span><span class="ident">r</span><span class="op">|</span> <span class="ident">r</span>.<span class="ident">f</span>(<span class="op">|</span><span class="kw">_</span><span class="op">|</span> <span class="ident">HttpResponse</span>::<span class="prelude-val">Ok</span>()))
|
|||
|
.<span class="ident">resource</span>(<span class="string">"/path2"</span>, <span class="op">|</span><span class="ident">r</span><span class="op">|</span> <span class="ident">r</span>.<span class="ident">f</span>(<span class="op">|</span><span class="kw">_</span><span class="op">|</span> <span class="ident">HttpResponse</span>::<span class="prelude-val">Ok</span>()))
|
|||
|
.<span class="ident">resource</span>(<span class="string">"/path3"</span>, <span class="op">|</span><span class="ident">r</span><span class="op">|</span> <span class="ident">r</span>.<span class="ident">f</span>(<span class="op">|</span><span class="kw">_</span><span class="op">|</span> <span class="ident">HttpResponse</span>::<span class="ident">MethodNotAllowed</span>()))
|
|||
|
});
|
|||
|
}</pre>
|
|||
|
<p>In the above example three routes get registered:</p>
|
|||
|
<ul>
|
|||
|
<li>/{project_id}/path1 - reponds to all http method</li>
|
|||
|
<li>/{project_id}/path2 - <code>GET</code> requests</li>
|
|||
|
<li>/{project_id}/path3 - <code>HEAD</code> requests</li>
|
|||
|
</ul>
|
|||
|
</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<S: 'static> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S></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/scope.rs.html#59-304' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><div class='impl-items'><h4 id='method.new' class="method"><span id='new.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.new' class='fnname'>new</a>(path: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/scope.rs.html#62-69' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Create a new scope</p>
|
|||
|
</div><h4 id='method.filter' class="method"><span id='filter.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.filter' class='fnname'>filter</a><T: <a class="trait" href="../actix_web/pred/trait.Predicate.html" title="trait actix_web::pred::Predicate">Predicate</a><S> + 'static>(self, p: T) -> Self</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/scope.rs.html#106-109' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Add match predicate to scope.</p>
|
|||
|
|
|||
|
<pre class="rust rust-example-rendered">
|
|||
|
<span class="kw">use</span> <span class="ident">actix_web</span>::{<span class="ident">http</span>, <span class="ident">pred</span>, <span class="ident">App</span>, <span class="ident">HttpRequest</span>, <span class="ident">HttpResponse</span>, <span class="ident">Path</span>};
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">index</span>(<span class="ident">data</span>: <span class="ident">Path</span><span class="op"><</span>(<span class="ident">String</span>, <span class="ident">String</span>)<span class="op">></span>) <span class="op">-></span> <span class="kw-2">&</span><span class="lifetime">'static</span> <span class="ident">str</span> {
|
|||
|
<span class="string">"Welcome!"</span>
|
|||
|
}
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">main</span>() {
|
|||
|
<span class="kw">let</span> <span class="ident">app</span> <span class="op">=</span> <span class="ident">App</span>::<span class="ident">new</span>().<span class="ident">scope</span>(<span class="string">"/app"</span>, <span class="op">|</span><span class="ident">scope</span><span class="op">|</span> {
|
|||
|
<span class="ident">scope</span>
|
|||
|
.<span class="ident">filter</span>(<span class="ident">pred</span>::<span class="ident">Header</span>(<span class="string">"content-type"</span>, <span class="string">"text/plain"</span>))
|
|||
|
.<span class="ident">route</span>(<span class="string">"/test1"</span>, <span class="ident">http</span>::<span class="ident">Method</span>::<span class="ident">GET</span>, <span class="ident">index</span>)
|
|||
|
.<span class="ident">route</span>(<span class="string">"/test2"</span>, <span class="ident">http</span>::<span class="ident">Method</span>::<span class="ident">POST</span>, <span class="op">|</span><span class="kw">_</span>: <span class="ident">HttpRequest</span><span class="op">|</span> {
|
|||
|
<span class="ident">HttpResponse</span>::<span class="ident">MethodNotAllowed</span>()
|
|||
|
})
|
|||
|
});
|
|||
|
}</pre>
|
|||
|
</div><h4 id='method.with_state' class="method"><span id='with_state.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.with_state' class='fnname'>with_state</a><F, T: 'static>(self, path: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, state: T, f: F) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S> <span class="where fmt-newline">where<br> 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="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><T>) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><T>, </span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/scope.rs.html#131-157' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Create nested scope with new state.</p>
|
|||
|
|
|||
|
<pre class="rust rust-example-rendered">
|
|||
|
<span class="kw">use</span> <span class="ident">actix_web</span>::{<span class="ident">App</span>, <span class="ident">HttpRequest</span>};
|
|||
|
|
|||
|
<span class="kw">struct</span> <span class="ident">AppState</span>;
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">index</span>(<span class="ident">req</span>: <span class="kw-2">&</span><span class="ident">HttpRequest</span><span class="op"><</span><span class="ident">AppState</span><span class="op">></span>) <span class="op">-></span> <span class="kw-2">&</span><span class="lifetime">'static</span> <span class="ident">str</span> {
|
|||
|
<span class="string">"Welcome!"</span>
|
|||
|
}
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">main</span>() {
|
|||
|
<span class="kw">let</span> <span class="ident">app</span> <span class="op">=</span> <span class="ident">App</span>::<span class="ident">new</span>().<span class="ident">scope</span>(<span class="string">"/app"</span>, <span class="op">|</span><span class="ident">scope</span><span class="op">|</span> {
|
|||
|
<span class="ident">scope</span>.<span class="ident">with_state</span>(<span class="string">"/state2"</span>, <span class="ident">AppState</span>, <span class="op">|</span><span class="ident">scope</span><span class="op">|</span> {
|
|||
|
<span class="ident">scope</span>.<span class="ident">resource</span>(<span class="string">"/test1"</span>, <span class="op">|</span><span class="ident">r</span><span class="op">|</span> <span class="ident">r</span>.<span class="ident">f</span>(<span class="ident">index</span>))
|
|||
|
})
|
|||
|
});
|
|||
|
}</pre>
|
|||
|
</div><h4 id='method.nested' class="method"><span id='nested.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.nested' class='fnname'>nested</a><F>(self, path: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, f: F) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S> <span class="where fmt-newline">where<br> 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="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S>) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S>, </span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/scope.rs.html#177-192' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Create nested scope.</p>
|
|||
|
|
|||
|
<pre class="rust rust-example-rendered">
|
|||
|
<span class="kw">use</span> <span class="ident">actix_web</span>::{<span class="ident">App</span>, <span class="ident">HttpRequest</span>};
|
|||
|
|
|||
|
<span class="kw">struct</span> <span class="ident">AppState</span>;
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">index</span>(<span class="ident">req</span>: <span class="kw-2">&</span><span class="ident">HttpRequest</span><span class="op"><</span><span class="ident">AppState</span><span class="op">></span>) <span class="op">-></span> <span class="kw-2">&</span><span class="lifetime">'static</span> <span class="ident">str</span> {
|
|||
|
<span class="string">"Welcome!"</span>
|
|||
|
}
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">main</span>() {
|
|||
|
<span class="kw">let</span> <span class="ident">app</span> <span class="op">=</span> <span class="ident">App</span>::<span class="ident">with_state</span>(<span class="ident">AppState</span>).<span class="ident">scope</span>(<span class="string">"/app"</span>, <span class="op">|</span><span class="ident">scope</span><span class="op">|</span> {
|
|||
|
<span class="ident">scope</span>.<span class="ident">nested</span>(<span class="string">"/v1"</span>, <span class="op">|</span><span class="ident">scope</span><span class="op">|</span> <span class="ident">scope</span>.<span class="ident">resource</span>(<span class="string">"/test1"</span>, <span class="op">|</span><span class="ident">r</span><span class="op">|</span> <span class="ident">r</span>.<span class="ident">f</span>(<span class="ident">index</span>)))
|
|||
|
});
|
|||
|
}</pre>
|
|||
|
</div><h4 id='method.route' class="method"><span id='route.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.route' class='fnname'>route</a><T, F, R>(self, path: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, method: <a class="struct" href="../actix_web/http/struct.Method.html" title="struct actix_web::http::Method">Method</a>, f: F) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S> <span class="where fmt-newline">where<br> F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.Fn.html" title="trait core::ops::function::Fn">Fn</a>(T) -> R + 'static,<br> R: <a class="trait" href="../actix_web/trait.Responder.html" title="trait actix_web::Responder">Responder</a> + 'static,<br> T: <a class="trait" href="../actix_web/trait.FromRequest.html" title="trait actix_web::FromRequest">FromRequest</a><S> + 'static, </span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/scope.rs.html#221-231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Configure route for a specific path.</p>
|
|||
|
<p>This is a simplified version of the <code>Scope::resource()</code> method.
|
|||
|
Handler functions need to accept one request extractor
|
|||
|
argument.</p>
|
|||
|
<p>This method could be called multiple times, in that case
|
|||
|
multiple routes would be registered for same resource path.</p>
|
|||
|
|
|||
|
<pre class="rust rust-example-rendered">
|
|||
|
<span class="kw">use</span> <span class="ident">actix_web</span>::{<span class="ident">http</span>, <span class="ident">App</span>, <span class="ident">HttpRequest</span>, <span class="ident">HttpResponse</span>, <span class="ident">Path</span>};
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">index</span>(<span class="ident">data</span>: <span class="ident">Path</span><span class="op"><</span>(<span class="ident">String</span>, <span class="ident">String</span>)<span class="op">></span>) <span class="op">-></span> <span class="kw-2">&</span><span class="lifetime">'static</span> <span class="ident">str</span> {
|
|||
|
<span class="string">"Welcome!"</span>
|
|||
|
}
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">main</span>() {
|
|||
|
<span class="kw">let</span> <span class="ident">app</span> <span class="op">=</span> <span class="ident">App</span>::<span class="ident">new</span>().<span class="ident">scope</span>(<span class="string">"/app"</span>, <span class="op">|</span><span class="ident">scope</span><span class="op">|</span> {
|
|||
|
<span class="ident">scope</span>.<span class="ident">route</span>(<span class="string">"/test1"</span>, <span class="ident">http</span>::<span class="ident">Method</span>::<span class="ident">GET</span>, <span class="ident">index</span>).<span class="ident">route</span>(
|
|||
|
<span class="string">"/test2"</span>,
|
|||
|
<span class="ident">http</span>::<span class="ident">Method</span>::<span class="ident">POST</span>,
|
|||
|
<span class="op">|</span><span class="kw">_</span>: <span class="ident">HttpRequest</span><span class="op">|</span> <span class="ident">HttpResponse</span>::<span class="ident">MethodNotAllowed</span>(),
|
|||
|
)
|
|||
|
});
|
|||
|
}</pre>
|
|||
|
</div><h4 id='method.resource' class="method"><span id='resource.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.resource' class='fnname'>resource</a><F, R>(self, path: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, f: F) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S> <span class="where fmt-newline">where<br> 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>(&mut <a class="struct" href="../actix_web/dev/struct.Resource.html" title="struct actix_web::dev::Resource">Resource</a><S>) -> R + 'static, </span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/scope.rs.html#256-273' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Configure resource for a specific path.</p>
|
|||
|
<p>This method is similar to an <code>App::resource()</code> method.
|
|||
|
Resources may have variable path segments. Resource path uses scope
|
|||
|
path as a path prefix.</p>
|
|||
|
|
|||
|
<pre class="rust rust-example-rendered">
|
|||
|
<span class="kw">use</span> <span class="ident">actix_web</span>::<span class="kw-2">*</span>;
|
|||
|
|
|||
|
<span class="kw">fn</span> <span class="ident">main</span>() {
|
|||
|
<span class="kw">let</span> <span class="ident">app</span> <span class="op">=</span> <span class="ident">App</span>::<span class="ident">new</span>().<span class="ident">scope</span>(<span class="string">"/api"</span>, <span class="op">|</span><span class="ident">scope</span><span class="op">|</span> {
|
|||
|
<span class="ident">scope</span>.<span class="ident">resource</span>(<span class="string">"/users/{userid}/{friend}"</span>, <span class="op">|</span><span class="ident">r</span><span class="op">|</span> {
|
|||
|
<span class="ident">r</span>.<span class="ident">get</span>().<span class="ident">f</span>(<span class="op">|</span><span class="kw">_</span><span class="op">|</span> <span class="ident">HttpResponse</span>::<span class="prelude-val">Ok</span>());
|
|||
|
<span class="ident">r</span>.<span class="ident">head</span>().<span class="ident">f</span>(<span class="op">|</span><span class="kw">_</span><span class="op">|</span> <span class="ident">HttpResponse</span>::<span class="ident">MethodNotAllowed</span>());
|
|||
|
<span class="ident">r</span>.<span class="ident">route</span>()
|
|||
|
.<span class="ident">filter</span>(<span class="ident">pred</span>::<span class="ident">Any</span>(<span class="ident">pred</span>::<span class="ident">Get</span>()).<span class="ident">or</span>(<span class="ident">pred</span>::<span class="ident">Put</span>()))
|
|||
|
.<span class="ident">filter</span>(<span class="ident">pred</span>::<span class="ident">Header</span>(<span class="string">"Content-Type"</span>, <span class="string">"text/plain"</span>))
|
|||
|
.<span class="ident">f</span>(<span class="op">|</span><span class="kw">_</span><span class="op">|</span> <span class="ident">HttpResponse</span>::<span class="prelude-val">Ok</span>())
|
|||
|
})
|
|||
|
});
|
|||
|
}</pre>
|
|||
|
</div><h4 id='method.default_resource' class="method"><span id='default_resource.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.default_resource' class='fnname'>default_resource</a><F, R>(self, f: F) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S> <span class="where fmt-newline">where<br> 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>(&mut <a class="struct" href="../actix_web/dev/struct.Resource.html" title="struct actix_web::dev::Resource">Resource</a><S>) -> R + 'static, </span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/scope.rs.html#276-289' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Default resource to be used if no matching route could be found.</p>
|
|||
|
</div><h4 id='method.middleware' class="method"><span id='middleware.v' class='invisible'><table class='table-display'><tbody><tr><td><code>pub fn <a href='#method.middleware' class='fnname'>middleware</a><M: <a class="trait" href="../actix_web/middleware/trait.Middleware.html" title="trait actix_web::middleware::Middleware">Middleware</a><S>>(self, mw: M) -> <a class="struct" href="../actix_web/struct.Scope.html" title="struct actix_web::Scope">Scope</a><S></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/actix_web/scope.rs.html#298-303' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><div class='docblock'><p>Register a scope middleware</p>
|
|||
|
<p>This is similar to <code>App's</code> middlewares, but
|
|||
|
middlewares get invoked on scope level.</p>
|
|||
|
<p><em>Note</em> <code>Middleware::finish()</code> fires right after response get
|
|||
|
prepared. It does not wait until body get sent to the peer.</p>
|
|||
|
</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<S> !<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.Scope.html" title="struct actix_web::Scope">Scope</a><S></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<S> !<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.Scope.html" title="struct actix_web::Scope">Scope</a><S></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>⏎</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>
|