mentat/mentat_transaction/query/enum.PreparedQuery.html

155 lines
13 KiB
HTML
Raw Normal View History

2018-08-22 17:04:13 +00:00
<!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 `PreparedQuery` enum in crate `mentat_transaction`.">
<meta name="keywords" content="rust, rustlang, rust-lang, PreparedQuery">
<title>mentat_transaction::query::PreparedQuery - 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="../../main.css" id="themeStyle">
<script src="../../storage.js"></script>
</head>
<body class="rustdoc enum">
<!--[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'>Enum PreparedQuery</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#variants">Variants</a><div class="sidebar-links"><a href="#variant.Empty">Empty</a><a href="#variant.Constant">Constant</a><a href="#variant.Bound">Bound</a></div><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.run">run</a></div></div><p class='location'><a href='../index.html'>mentat_transaction</a>::<wbr><a href='index.html'>query</a></p><script>window.sidebarCurrent = {name: 'PreparedQuery', ty: 'enum', 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">
</div>
</form>
</nav>
<section id='main' class="content">
<h1 class='fqn'><span class='in-band'>Enum <a href='../index.html'>mentat_transaction</a>::<wbr><a href='index.html'>query</a>::<wbr><a class="enum" href=''>PreparedQuery</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/mentat_transaction/query.rs.html#87-101' title='goto source code'>[src]</a></span></h1>
<pre class='rust enum'>pub enum PreparedQuery&lt;'sqlite&gt; {
Empty {
find_spec: <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html" title="struct alloc::rc::Rc">Rc</a>&lt;<a class="enum" href="../../edn/query/enum.FindSpec.html" title="enum edn::query::FindSpec">FindSpec</a>&gt;,
},
Constant {
select: <a class="struct" href="../../mentat_query_projector/projectors/constant/struct.ConstantProjector.html" title="struct mentat_query_projector::projectors::constant::ConstantProjector">ConstantProjector</a>,
},
Bound {
statement: <a class="struct" href="../../rusqlite/statement/struct.Statement.html" title="struct rusqlite::statement::Statement">Statement</a>&lt;'sqlite&gt;,
schema: <a class="struct" href="../../mentat_core/struct.Schema.html" title="struct mentat_core::Schema">Schema</a>,
connection: &amp;'sqlite <a class="struct" href="../../rusqlite/struct.Connection.html" title="struct rusqlite::Connection">Connection</a>,
args: <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html" title="struct alloc::rc::Rc">Rc</a>&lt;<a class="enum" href="../../rusqlite/types/value/enum.Value.html" title="enum rusqlite::types::value::Value">Value</a>&gt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>&gt;,
projector: <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../../mentat_query_projector/projectors/trait.Projector.html" title="trait mentat_query_projector::projectors::Projector">Projector</a>&gt;,
},
}</pre><h2 id='variants' class='variants small-section-header'>
Variants<a href='#variants' class='anchor'></a></h2>
<span id="variant.Empty" class="variant small-section-header"><a href="#variant.Empty" class="anchor field"></a><span id='Empty.v' class='invisible'><code>Empty</code></span></span><span class='docblock autohide sub-variant' id='variant.Empty.fields'><h3 class='fields'>Fields of <code>Empty</code></h3>
<table><tr><td id='variant.Empty.field.find_spec'><span id='Empty.v.find_spec.v' class='invisible'><code>find_spec:&nbsp;<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html" title="struct alloc::rc::Rc">Rc</a>&lt;<a class="enum" href="../../edn/query/enum.FindSpec.html" title="enum edn::query::FindSpec">FindSpec</a>&gt;</code></span></td><td></td></tr></table></span><span id="variant.Constant" class="variant small-section-header"><a href="#variant.Constant" class="anchor field"></a><span id='Constant.v' class='invisible'><code>Constant</code></span></span><span class='docblock autohide sub-variant' id='variant.Constant.fields'><h3 class='fields'>Fields of <code>Constant</code></h3>
<table><tr><td id='variant.Constant.field.select'><span id='Constant.v.select.v' class='invisible'><code>select:&nbsp;<a class="struct" href="../../mentat_query_projector/projectors/constant/struct.ConstantProjector.html" title="struct mentat_query_projector::projectors::constant::ConstantProjector">ConstantProjector</a></code></span></td><td></td></tr></table></span><span id="variant.Bound" class="variant small-section-header"><a href="#variant.Bound" class="anchor field"></a><span id='Bound.v' class='invisible'><code>Bound</code></span></span><span class='docblock autohide sub-variant' id='variant.Bound.fields'><h3 class='fields'>Fields of <code>Bound</code></h3>
<table><tr><td id='variant.Bound.field.statement'><span id='Bound.v.statement.v' class='invisible'><code>statement:&nbsp;<a class="struct" href="../../rusqlite/statement/struct.Statement.html" title="struct rusqlite::statement::Statement">Statement</a>&lt;'sqlite&gt;</code></span></td><td></td></tr><tr><td id='variant.Bound.field.schema'><span id='Bound.v.schema.v' class='invisible'><code>schema:&nbsp;<a class="struct" href="../../mentat_core/struct.Schema.html" title="struct mentat_core::Schema">Schema</a></code></span></td><td></td></tr><tr><td id='variant.Bound.field.connection'><span id='Bound.v.connection.v' class='invisible'><code>connection:&nbsp;&amp;'sqlite <a class="struct" href="../../rusqlite/struct.Connection.html" title="struct rusqlite::Connection">Connection</a></code></span></td><td></td></tr><tr><td id='variant.Bound.field.args'><span id='Bound.v.args.v' class='invisible'><code>args:&nbsp;<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/rc/struct.Rc.html" title="struct alloc::rc::Rc">Rc</a>&lt;<a class="enum" href="../../rusqlite/types/value/enum.Value.html" title="enum rusqlite::types::value::Value">Value</a>&gt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>&gt;</code></span></td><td></td></tr><tr><td id='variant.Bound.field.projector'><span id='Bound.v.projector.v' class='invisible'><code>projector:&nbsp;<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../../mentat_query_projector/projectors/trait.Projector.html" title="trait mentat_query_projector::projectors::Projector">Projector</a>&gt;</code></span></td><td></td></tr></table></span>
<h2 id='methods' class='small-section-header'>
Methods<a href='#methods' class='anchor'></a>
</h2>
<h3 id='impl' class='impl'><span class='in-band'><code>impl&lt;'sqlite&gt; <a class="enum" href="../../mentat_transaction/query/enum.PreparedQuery.html" title="enum mentat_transaction::query::PreparedQuery">PreparedQuery</a>&lt;'sqlite&gt;</code><a href='#impl' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/mentat_transaction/query.rs.html#103-119' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.run' class="method"><span id='run.v' class='invisible'><code>pub fn <a href='#method.run' class='fnname'>run</a>&lt;T&gt;(&amp;mut self, _inputs: T) -&gt; <a class="type" href="../../mentat_transaction/query/type.QueryExecutionResult.html" title="type mentat_transaction::query::QueryExecutionResult">QueryExecutionResult</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <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="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../../mentat_transaction/query/struct.QueryInputs.html" title="struct mentat_transaction::query::QueryInputs">QueryInputs</a>&gt;&gt;,&nbsp;</span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/mentat_transaction/query.rs.html#104-118' title='goto source code'>[src]</a></span></h4>
</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>
</div>
</div>
</aside>
<script>
window.rootPath = "../../";
window.currentCrate = "mentat_transaction";
</script>
<script src="../../main.js"></script>
<script defer src="../../search-index.js"></script>
</body>
</html>