mentat/tolstoy_traits/errors/enum.TolstoyError.html

171 lines
23 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 `TolstoyError` enum in crate `tolstoy_traits`.">
<meta name="keywords" content="rust, rustlang, rust-lang, TolstoyError">
<title>tolstoy_traits::errors::TolstoyError - 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 TolstoyError</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#variants">Variants</a><div class="sidebar-links"><a href="#variant.BadServerResponse">BadServerResponse</a><a href="#variant.DuplicateMetadata">DuplicateMetadata</a><a href="#variant.TxProcessorUnfinished">TxProcessorUnfinished</a><a href="#variant.TxIncorrectlyMapped">TxIncorrectlyMapped</a><a href="#variant.UnexpectedState">UnexpectedState</a><a href="#variant.NotYetImplemented">NotYetImplemented</a><a href="#variant.DbError">DbError</a><a href="#variant.SerializationError">SerializationError</a><a href="#variant.RusqliteError">RusqliteError</a><a href="#variant.IoError">IoError</a><a href="#variant.UuidError">UuidError</a><a href="#variant.NetworkError">NetworkError</a><a href="#variant.UriError">UriError</a></div><a class="sidebar-title" href="#implementations">Trait Implementations</a><div class="sidebar-links"><a href="#impl-Debug">Debug</a><a href="#impl-From%3CDbError%3E">From&lt;DbError&gt;</a><a href="#impl-From%3CError%3E">From&lt;Error&gt;</a><a href="#impl-From%3CParseError%3E">From&lt;ParseError&gt;</a><a href="#impl-From%3CUriError%3E">From&lt;UriError&gt;</a></div></div><p class='location'><a href='../index.html'>tolstoy_traits</a>::<wbr><a href='index.html'>errors</a></p><script>window.sidebarCurrent = {name: 'TolstoyError', 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'>tolstoy_traits</a>::<wbr><a href='index.html'>errors</a>::<wbr><a class="enum" href=''>TolstoyError</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/tolstoy_traits/errors.rs.html#22-63' title='goto source code'>[src]</a></span></h1>
<pre class='rust enum'>pub enum TolstoyError {
BadServerResponse(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>),
DuplicateMetadata(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>),
TxProcessorUnfinished,
TxIncorrectlyMapped(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>),
UnexpectedState(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>),
NotYetImplemented(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>),
DbError(<a class="struct" href="../../db_traits/errors/struct.DbError.html" title="struct db_traits::errors::DbError">DbError</a>),
SerializationError(<a class="struct" href="../../serde_json/error/struct.Error.html" title="struct serde_json::error::Error">Error</a>),
RusqliteError(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>),
IoError(<a class="struct" href="https://doc.rust-lang.org/nightly/std/io/error/struct.Error.html" title="struct std::io::error::Error">Error</a>),
UuidError(<a class="enum" href="../../uuid/enum.ParseError.html" title="enum uuid::ParseError">ParseError</a>),
NetworkError(<a class="enum" href="../../hyper/error/enum.Error.html" title="enum hyper::error::Error">Error</a>),
UriError(<a class="struct" href="../../hyper/uri/struct.UriError.html" title="struct hyper::uri::UriError">UriError</a>),
}</pre><h2 id='variants' class='variants small-section-header'>
Variants<a href='#variants' class='anchor'></a></h2>
<span id="variant.BadServerResponse" class="variant small-section-header"><a href="#variant.BadServerResponse" class="anchor field"></a><span id='BadServerResponse.v' class='invisible'><code>BadServerResponse(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>)</code></span></span><span id="variant.DuplicateMetadata" class="variant small-section-header"><a href="#variant.DuplicateMetadata" class="anchor field"></a><span id='DuplicateMetadata.v' class='invisible'><code>DuplicateMetadata(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>)</code></span></span><span id="variant.TxProcessorUnfinished" class="variant small-section-header"><a href="#variant.TxProcessorUnfinished" class="anchor field"></a><span id='TxProcessorUnfinished.v' class='invisible'><code>TxProcessorUnfinished</code></span></span><span id="variant.TxIncorrectlyMapped" class="variant small-section-header"><a href="#variant.TxIncorrectlyMapped" class="anchor field"></a><span id='TxIncorrectlyMapped.v' class='invisible'><code>TxIncorrectlyMapped(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code></span></span><span id="variant.UnexpectedState" class="variant small-section-header"><a href="#variant.UnexpectedState" class="anchor field"></a><span id='UnexpectedState.v' class='invisible'><code>UnexpectedState(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>)</code></span></span><span id="variant.NotYetImplemented" class="variant small-section-header"><a href="#variant.NotYetImplemented" class="anchor field"></a><span id='NotYetImplemented.v' class='invisible'><code>NotYetImplemented(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>)</code></span></span><span id="variant.DbError" class="variant small-section-header"><a href="#variant.DbError" class="anchor field"></a><span id='DbError.v' class='invisible'><code>DbError(<a class="struct" href="../../db_traits/errors/struct.DbError.html" title="struct db_traits::errors::DbError">DbError</a>)</code></span></span><span id="variant.SerializationError" class="variant small-section-header"><a href="#variant.SerializationError" class="anchor field"></a><span id='SerializationError.v' class='invisible'><code>SerializationError(<a class="struct" href="../../serde_json/error/struct.Error.html" title="struct serde_json::error::Error">Error</a>)</code></span></span><span id="variant.RusqliteError" class="variant small-section-header"><a href="#variant.RusqliteError" class="anchor field"></a><span id='RusqliteError.v' class='invisible'><code>RusqliteError(<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>)</code></span></span><span id="variant.IoError" class="variant small-section-header"><a href="#variant.IoError" class="anchor field"></a><span id='IoError.v' class='invisible'><code>IoError(<a class="struct" href="https://doc.rust-lang.org/nightly/std/io/error/struct.Error.html" title="struct std::io::error::Error">Error</a>)</code></span></span><span id="variant.UuidError" class="variant small-section-header"><a href="#variant.UuidError" class="anchor field"></a><span id='UuidError.v' class='invisible'><code>UuidError(<a class="enum" href="../../uuid/enum.ParseError.html" title="enum uuid::ParseError">ParseError</a>)</code></span></span><span id="variant.NetworkError" class="variant small-section-header"><a href="#variant.NetworkError" class="anchor field"></a><span id='NetworkError.v' class='invisible'><code>NetworkError(<a class="enum" href="../../hyper/error/enum.Error.html" title="enum hyper::error::Error">Error</a>)</code></span></span><span id="variant.UriError" class="variant small-section-header"><a href="#variant.UriError" clas
<h2 id='implementations' class='small-section-header'>
Trait Implementations<a href='#implementations' class='anchor'></a>
</h2>
<h3 id='impl-Debug' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code><a href='#impl-Debug' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#21' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt' class="method"><span id='fmt.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, __arg_0: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="type" href="https://doc.rust-lang.org/nightly/core/fmt/type.Result.html" title="type core::fmt::Result">Result</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#21' title='goto source code'>[src]</a></span></h4>
<div class='docblock'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a></p>
</div></div><h3 id='impl-From%3CDbError%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="../../db_traits/errors/struct.DbError.html" title="struct db_traits::errors::DbError">DbError</a>&gt; for <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code><a href='#impl-From%3CDbError%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#65-69' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from' class="method"><span id='from.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(error: <a class="struct" href="../../db_traits/errors/struct.DbError.html" title="struct db_traits::errors::DbError">DbError</a>) -&gt; <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#66-68' title='goto source code'>[src]</a></span></h4>
<div class='docblock'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CError%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="../../serde_json/error/struct.Error.html" title="struct serde_json::error::Error">Error</a>&gt; for <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code><a href='#impl-From%3CError%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#71-75' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from-1' class="method"><span id='from.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(error: <a class="struct" href="../../serde_json/error/struct.Error.html" title="struct serde_json::error::Error">Error</a>) -&gt; <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#72-74' title='goto source code'>[src]</a></span></h4>
<div class='docblock'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CError%3E-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="enum" href="../../rusqlite/error/enum.Error.html" title="enum rusqlite::error::Error">Error</a>&gt; for <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code><a href='#impl-From%3CError%3E-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#77-81' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from-2' class="method"><span id='from.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(error: <a class="enum" href="../../rusqlite/error/enum.Error.html" title="enum rusqlite::error::Error">Error</a>) -&gt; <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#78-80' title='goto source code'>[src]</a></span></h4>
<div class='docblock'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CError%3E-2' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/std/io/error/struct.Error.html" title="struct std::io::error::Error">Error</a>&gt; for <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code><a href='#impl-From%3CError%3E-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#83-87' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from-3' class="method"><span id='from.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(error: <a class="struct" href="https://doc.rust-lang.org/nightly/std/io/error/struct.Error.html" title="struct std::io::error::Error">Error</a>) -&gt; <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#84-86' title='goto source code'>[src]</a></span></h4>
<div class='docblock'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CParseError%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="enum" href="../../uuid/enum.ParseError.html" title="enum uuid::ParseError">ParseError</a>&gt; for <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code><a href='#impl-From%3CParseError%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#89-93' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from-4' class="method"><span id='from.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(error: <a class="enum" href="../../uuid/enum.ParseError.html" title="enum uuid::ParseError">ParseError</a>) -&gt; <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#90-92' title='goto source code'>[src]</a></span></h4>
<div class='docblock'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CError%3E-3' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="enum" href="../../hyper/error/enum.Error.html" title="enum hyper::error::Error">Error</a>&gt; for <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code><a href='#impl-From%3CError%3E-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#95-99' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from-5' class="method"><span id='from.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(error: <a class="enum" href="../../hyper/error/enum.Error.html" title="enum hyper::error::Error">Error</a>) -&gt; <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#96-98' title='goto source code'>[src]</a></span></h4>
<div class='docblock'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CUriError%3E' class='impl'><span class='in-band'><code>impl <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="../../hyper/uri/struct.UriError.html" title="struct hyper::uri::UriError">UriError</a>&gt; for <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code><a href='#impl-From%3CUriError%3E' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#101-105' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from-6' class="method"><span id='from.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(error: <a class="struct" href="../../hyper/uri/struct.UriError.html" title="struct hyper::uri::UriError">UriError</a>) -&gt; <a class="enum" href="../../tolstoy_traits/errors/enum.TolstoyError.html" title="enum tolstoy_traits::errors::TolstoyError">TolstoyError</a></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../../src/tolstoy_traits/errors.rs.html#102-104' title='goto source code'>[src]</a></span></h4>
<div class='docblock'><p>Performs the conversion.</p>
</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>
</div>
</div>
</aside>
<script>
window.rootPath = "../../";
window.currentCrate = "tolstoy_traits";
</script>
<script src="../../main.js"></script>
<script defer src="../../search-index.js"></script>
</body>
</html>