Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 0c2243f8a1696816431e7210e991fa52 > files > 7419

rust-doc-1.35.0-1.mga7.armv7hl.rpm

<!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 `TryFrom` trait in crate `core`."><meta name="keywords" content="rust, rustlang, rust-lang, TryFrom"><title>core::convert::TryFrom - Rust</title><link rel="stylesheet" type="text/css" href="../../normalize1.35.0.css"><link rel="stylesheet" type="text/css" href="../../rustdoc1.35.0.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../dark1.35.0.css"><link rel="stylesheet" type="text/css" href="../../light1.35.0.css" id="themeStyle"><script src="../../storage1.35.0.js"></script><noscript><link rel="stylesheet" href="../../noscript1.35.0.css"></noscript><link rel="shortcut icon" href="../../favicon1.35.0.ico"><style type="text/css">#crate-search{background-image:url("../../down-arrow1.35.0.svg");}</style></head><body class="rustdoc trait"><!--[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><a href='../../core/index.html'><img src='../../rust-logo1.35.0.png' alt='logo' width='100'></a><p class='location'>Trait TryFrom</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#associated-types">Associated Types</a><div class="sidebar-links"><a href="#associatedtype.Error">Error</a></div><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.try_from">try_from</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='../index.html'>core</a>::<wbr><a href='index.html'>convert</a></p><script>window.sidebarCurrent = {name: 'TryFrom', ty: 'trait', 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="../../brush1.35.0.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../../theme1.35.0.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"></div><a id="settings-menu" href="../../settings.html"><img src="../../wheel1.35.0.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span class='since' title='Stable since Rust version 1.34.0'>1.34.0</span><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/core/convert.rs.html#478-486' title='goto source code'>[src]</a></span><span class='in-band'>Trait <a href='../index.html'>core</a>::<wbr><a href='index.html'>convert</a>::<wbr><a class="trait" href=''>TryFrom</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust trait'>pub trait TryFrom&lt;T&gt;: <a class="trait" href="../../core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> {
    type <a href='#associatedtype.Error' class="type">Error</a>;
    fn <a href='#tymethod.try_from' class='fnname'>try_from</a>(value: T) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;;
}</pre></div><div class='docblock'><p>Simple and safe type conversions that may fail in a controlled
way under some circumstances. It is the reciprocal of <a href="trait.TryInto.html"><code>TryInto</code></a>.</p>
<p>This is useful when you are doing a type conversion that may
trivially succeed but may also need special handling.
For example, there is no way to convert an <code>i64</code> into an <code>i32</code>
using the <a href="../../core/convert/trait.From.html" title="`From`"><code>From</code></a> trait, because an <code>i64</code> may contain a value
that an <code>i32</code> cannot represent and so the conversion would lose data.
This might be handled by truncating the <code>i64</code> to an <code>i32</code> (essentially
giving the <code>i64</code>'s value modulo <code>i32::MAX</code>) or by simply returning
<code>i32::MAX</code>, or by some other method.  The <code>From</code> trait is intended
for perfect conversions, so the <code>TryFrom</code> trait informs the
programmer when a type conversion could go bad and lets them
decide how to handle it.</p>
<h1 id="generic-implementations" class="section-header"><a href="#generic-implementations">Generic Implementations</a></h1>
<ul>
<li><code>TryFrom&lt;T&gt; for U</code> implies [<code>TryInto&lt;U&gt;</code>]<code>for T</code></li>
<li><a href="trait.TryFrom.html#tymethod.try_from"><code>try_from</code></a> is reflexive, which means that <code>TryFrom&lt;T&gt; for T</code>
is implemented and cannot fail -- the associated <code>Error</code> type for
calling <code>T::try_from()</code> on a value of type <code>T</code> is <code>Infallible</code>.
When the <code>!</code> type is stablized <code>Infallible</code> and <code>!</code> will be
equivalent.</li>
</ul>
<p><code>TryFrom&lt;T&gt;</code> can be implemented as follows:</p>

<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">use</span> <span class="ident">std</span>::<span class="ident">convert</span>::<span class="ident">TryFrom</span>;

<span class="kw">struct</span> <span class="ident">SuperiorThanZero</span>(<span class="ident">i32</span>);

<span class="kw">impl</span> <span class="ident">TryFrom</span><span class="op">&lt;</span><span class="ident">i32</span><span class="op">&gt;</span> <span class="kw">for</span> <span class="ident">SuperiorThanZero</span> {
    <span class="kw">type</span> <span class="ident">Error</span> <span class="op">=</span> <span class="kw-2">&amp;</span><span class="lifetime">&#39;static</span> <span class="ident">str</span>;

    <span class="kw">fn</span> <span class="ident">try_from</span>(<span class="ident">value</span>: <span class="ident">i32</span>) <span class="op">-&gt;</span> <span class="prelude-ty">Result</span><span class="op">&lt;</span><span class="self">Self</span>, <span class="self">Self</span>::<span class="ident">Error</span><span class="op">&gt;</span> {
        <span class="kw">if</span> <span class="ident">value</span> <span class="op">&lt;</span> <span class="number">0</span> {
            <span class="prelude-val">Err</span>(<span class="string">&quot;SuperiorThanZero only accepts value superior than zero!&quot;</span>)
        } <span class="kw">else</span> {
            <span class="prelude-val">Ok</span>(<span class="ident">SuperiorThanZero</span>(<span class="ident">value</span>))
        }
    }
}<a class="test-arrow" target="_blank" href="https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn%20main()%20%7B%0Ause%20std%3A%3Aconvert%3A%3ATryFrom%3B%0A%0Astruct%20SuperiorThanZero(i32)%3B%0A%0Aimpl%20TryFrom%3Ci32%3E%20for%20SuperiorThanZero%20%7B%0A%20%20%20%20type%20Error%20%3D%20%26'static%20str%3B%0A%0A%20%20%20%20fn%20try_from(value%3A%20i32)%20-%3E%20Result%3CSelf%2C%20Self%3A%3AError%3E%20%7B%0A%20%20%20%20%20%20%20%20if%20value%20%3C%200%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20Err(%22SuperiorThanZero%20only%20accepts%20value%20superior%20than%20zero!%22)%0A%20%20%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20Ok(SuperiorThanZero(value))%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%7D%0A%7D">Run</a></pre></div>
<h1 id="examples" class="section-header"><a href="#examples">Examples</a></h1>
<p>As described, <a href="https://doc.rust-lang.org/nightly/std/primitive.i32.html" title="`i32`"><code>i32</code></a> implements <code>TryFrom&lt;i64&gt;</code>:</p>

<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">use</span> <span class="ident">std</span>::<span class="ident">convert</span>::<span class="ident">TryFrom</span>;

<span class="kw">let</span> <span class="ident">big_number</span> <span class="op">=</span> <span class="number">1_000_000_000_000i64</span>;
<span class="comment">// Silently truncates `big_number`, requires detecting</span>
<span class="comment">// and handling the truncation after the fact.</span>
<span class="kw">let</span> <span class="ident">smaller_number</span> <span class="op">=</span> <span class="ident">big_number</span> <span class="kw">as</span> <span class="ident">i32</span>;
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">smaller_number</span>, <span class="op">-</span><span class="number">727379968</span>);

<span class="comment">// Returns an error because `big_number` is too big to</span>
<span class="comment">// fit in an `i32`.</span>
<span class="kw">let</span> <span class="ident">try_smaller_number</span> <span class="op">=</span> <span class="ident">i32</span>::<span class="ident">try_from</span>(<span class="ident">big_number</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">try_smaller_number</span>.<span class="ident">is_err</span>());

<span class="comment">// Returns `Ok(3)`.</span>
<span class="kw">let</span> <span class="ident">try_successful_smaller_number</span> <span class="op">=</span> <span class="ident">i32</span>::<span class="ident">try_from</span>(<span class="number">3</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">try_successful_smaller_number</span>.<span class="ident">is_ok</span>());<a class="test-arrow" target="_blank" href="https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn%20main()%20%7B%0Ause%20std%3A%3Aconvert%3A%3ATryFrom%3B%0A%0Alet%20big_number%20%3D%201_000_000_000_000i64%3B%0A%2F%2F%20Silently%20truncates%20%60big_number%60%2C%20requires%20detecting%0A%2F%2F%20and%20handling%20the%20truncation%20after%20the%20fact.%0Alet%20smaller_number%20%3D%20big_number%20as%20i32%3B%0Aassert_eq!(smaller_number%2C%20-727379968)%3B%0A%0A%2F%2F%20Returns%20an%20error%20because%20%60big_number%60%20is%20too%20big%20to%0A%2F%2F%20fit%20in%20an%20%60i32%60.%0Alet%20try_smaller_number%20%3D%20i32%3A%3Atry_from(big_number)%3B%0Aassert!(try_smaller_number.is_err())%3B%0A%0A%2F%2F%20Returns%20%60Ok(3)%60.%0Alet%20try_successful_smaller_number%20%3D%20i32%3A%3Atry_from(3)%3B%0Aassert!(try_successful_smaller_number.is_ok())%3B%0A%7D">Run</a></pre></div>
</div>
            <h2 id='associated-types' class='small-section-header'>Associated Types<a href='#associated-types' class='anchor'></a></h2><div class='methods'><h3 id='associatedtype.Error' class='method'><code id='Error.t'>type <a href='#associatedtype.Error' class="type">Error</a></code></h3><div class='docblock'><p>The type returned in the event of a conversion error.</p>
</div></div><span class='loading-content'>Loading content...</span>
            <h2 id='required-methods' class='small-section-header'>Required methods<a href='#required-methods' class='anchor'></a></h2><div class='methods'><h3 id='tymethod.try_from' class='method'><code id='try_from.v'>fn <a href='#tymethod.try_from' class='fnname'>try_from</a>(value: T) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code></h3><div class='docblock'><p>Performs the conversion.</p>
</div></div><span class='loading-content'>Loading content...</span>
            <h2 id='implementors' class='small-section-header'>Implementors<a href='#implementors' class='anchor'></a></h2><div class='item-list' id='implementors-list'><h3 id='impl-TryFrom%3Ci8%3E' class='impl'><code class='in-band'>impl TryFrom&lt;i8&gt; for usize</code><a href='#impl-TryFrom%3Ci8%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-1' class="type"><code id='Error.t-1'>type <a href='#associatedtype.Error-1' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from' class="method"><code id='try_from.v-1'>fn <a href='#method.try_from' class='fnname'>try_from</a>(u: i8) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;usize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci16%3E' class='impl'><code class='in-band'>impl TryFrom&lt;i16&gt; for usize</code><a href='#impl-TryFrom%3Ci16%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-2' class="type"><code id='Error.t-2'>type <a href='#associatedtype.Error-2' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-1' class="method"><code id='try_from.v-2'>fn <a href='#method.try_from-1' class='fnname'>try_from</a>(u: i16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;usize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for usize</code><a href='#impl-TryFrom%3Ci32%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-3' class="type"><code id='Error.t-3'>type <a href='#associatedtype.Error-3' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-2' class="method"><code id='try_from.v-3'>fn <a href='#method.try_from-2' class='fnname'>try_from</a>(u: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;usize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for isize</code><a href='#impl-TryFrom%3Ci32%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-4' class="type"><code id='Error.t-4'>type <a href='#associatedtype.Error-4' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-3' class="method"><code id='try_from.v-4'>fn <a href='#method.try_from-3' class='fnname'>try_from</a>(value: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for usize</code><a href='#impl-TryFrom%3Ci64%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-5' class="type"><code id='Error.t-5'>type <a href='#associatedtype.Error-5' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-4' class="method"><code id='try_from.v-5'>fn <a href='#method.try_from-4' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;usize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for isize</code><a href='#impl-TryFrom%3Ci64%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-6' class="type"><code id='Error.t-6'>type <a href='#associatedtype.Error-6' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-5' class="method"><code id='try_from.v-6'>fn <a href='#method.try_from-5' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;isize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for usize</code><a href='#impl-TryFrom%3Ci128%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-7' class="type"><code id='Error.t-7'>type <a href='#associatedtype.Error-7' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-6' class="method"><code id='try_from.v-7'>fn <a href='#method.try_from-6' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;usize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for isize</code><a href='#impl-TryFrom%3Ci128%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-8' class="type"><code id='Error.t-8'>type <a href='#associatedtype.Error-8' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-7' class="method"><code id='try_from.v-8'>fn <a href='#method.try_from-7' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;isize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for i8</code><a href='#impl-TryFrom%3Ci128%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-9' class="type"><code id='Error.t-9'>type <a href='#associatedtype.Error-9' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-8' class="method"><code id='try_from.v-9'>fn <a href='#method.try_from-8' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for i16</code><a href='#impl-TryFrom%3Ci128%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-10' class="type"><code id='Error.t-10'>type <a href='#associatedtype.Error-10' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-9' class="method"><code id='try_from.v-10'>fn <a href='#method.try_from-9' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for i32</code><a href='#impl-TryFrom%3Ci128%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-11' class="type"><code id='Error.t-11'>type <a href='#associatedtype.Error-11' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-10' class="method"><code id='try_from.v-11'>fn <a href='#method.try_from-10' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for i64</code><a href='#impl-TryFrom%3Ci128%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-12' class="type"><code id='Error.t-12'>type <a href='#associatedtype.Error-12' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-11' class="method"><code id='try_from.v-12'>fn <a href='#method.try_from-11' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for u8</code><a href='#impl-TryFrom%3Ci128%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-13' class="type"><code id='Error.t-13'>type <a href='#associatedtype.Error-13' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-12' class="method"><code id='try_from.v-13'>fn <a href='#method.try_from-12' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-7' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for u16</code><a href='#impl-TryFrom%3Ci128%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-14' class="type"><code id='Error.t-14'>type <a href='#associatedtype.Error-14' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-13' class="method"><code id='try_from.v-14'>fn <a href='#method.try_from-13' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-8' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for u32</code><a href='#impl-TryFrom%3Ci128%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-15' class="type"><code id='Error.t-15'>type <a href='#associatedtype.Error-15' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-14' class="method"><code id='try_from.v-15'>fn <a href='#method.try_from-14' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-9' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for u64</code><a href='#impl-TryFrom%3Ci128%3E-9' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-16' class="type"><code id='Error.t-16'>type <a href='#associatedtype.Error-16' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-15' class="method"><code id='try_from.v-16'>fn <a href='#method.try_from-15' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci128%3E-10' class='impl'><code class='in-band'>impl TryFrom&lt;i128&gt; for u128</code><a href='#impl-TryFrom%3Ci128%3E-10' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-17' class="type"><code id='Error.t-17'>type <a href='#associatedtype.Error-17' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-16' class="method"><code id='try_from.v-17'>fn <a href='#method.try_from-16' class='fnname'>try_from</a>(u: i128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u128, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci16%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;i16&gt; for i8</code><a href='#impl-TryFrom%3Ci16%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-18' class="type"><code id='Error.t-18'>type <a href='#associatedtype.Error-18' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-17' class="method"><code id='try_from.v-18'>fn <a href='#method.try_from-17' class='fnname'>try_from</a>(u: i16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci16%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;i16&gt; for u8</code><a href='#impl-TryFrom%3Ci16%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-19' class="type"><code id='Error.t-19'>type <a href='#associatedtype.Error-19' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-18' class="method"><code id='try_from.v-19'>fn <a href='#method.try_from-18' class='fnname'>try_from</a>(u: i16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci16%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;i16&gt; for u16</code><a href='#impl-TryFrom%3Ci16%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-20' class="type"><code id='Error.t-20'>type <a href='#associatedtype.Error-20' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-19' class="method"><code id='try_from.v-20'>fn <a href='#method.try_from-19' class='fnname'>try_from</a>(u: i16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci16%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;i16&gt; for u32</code><a href='#impl-TryFrom%3Ci16%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-21' class="type"><code id='Error.t-21'>type <a href='#associatedtype.Error-21' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-20' class="method"><code id='try_from.v-21'>fn <a href='#method.try_from-20' class='fnname'>try_from</a>(u: i16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci16%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;i16&gt; for u64</code><a href='#impl-TryFrom%3Ci16%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-22' class="type"><code id='Error.t-22'>type <a href='#associatedtype.Error-22' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-21' class="method"><code id='try_from.v-22'>fn <a href='#method.try_from-21' class='fnname'>try_from</a>(u: i16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci16%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;i16&gt; for u128</code><a href='#impl-TryFrom%3Ci16%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-23' class="type"><code id='Error.t-23'>type <a href='#associatedtype.Error-23' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-22' class="method"><code id='try_from.v-23'>fn <a href='#method.try_from-22' class='fnname'>try_from</a>(u: i16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u128, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for i8</code><a href='#impl-TryFrom%3Ci32%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-24' class="type"><code id='Error.t-24'>type <a href='#associatedtype.Error-24' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-23' class="method"><code id='try_from.v-24'>fn <a href='#method.try_from-23' class='fnname'>try_from</a>(u: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for i16</code><a href='#impl-TryFrom%3Ci32%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-25' class="type"><code id='Error.t-25'>type <a href='#associatedtype.Error-25' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-24' class="method"><code id='try_from.v-25'>fn <a href='#method.try_from-24' class='fnname'>try_from</a>(u: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for u8</code><a href='#impl-TryFrom%3Ci32%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-26' class="type"><code id='Error.t-26'>type <a href='#associatedtype.Error-26' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-25' class="method"><code id='try_from.v-26'>fn <a href='#method.try_from-25' class='fnname'>try_from</a>(u: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for u16</code><a href='#impl-TryFrom%3Ci32%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-27' class="type"><code id='Error.t-27'>type <a href='#associatedtype.Error-27' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-26' class="method"><code id='try_from.v-27'>fn <a href='#method.try_from-26' class='fnname'>try_from</a>(u: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for u32</code><a href='#impl-TryFrom%3Ci32%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-28' class="type"><code id='Error.t-28'>type <a href='#associatedtype.Error-28' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-27' class="method"><code id='try_from.v-28'>fn <a href='#method.try_from-27' class='fnname'>try_from</a>(u: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E-7' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for u64</code><a href='#impl-TryFrom%3Ci32%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-29' class="type"><code id='Error.t-29'>type <a href='#associatedtype.Error-29' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-28' class="method"><code id='try_from.v-29'>fn <a href='#method.try_from-28' class='fnname'>try_from</a>(u: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci32%3E-8' class='impl'><code class='in-band'>impl TryFrom&lt;i32&gt; for u128</code><a href='#impl-TryFrom%3Ci32%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-30' class="type"><code id='Error.t-30'>type <a href='#associatedtype.Error-30' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-29' class="method"><code id='try_from.v-30'>fn <a href='#method.try_from-29' class='fnname'>try_from</a>(u: i32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u128, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for i8</code><a href='#impl-TryFrom%3Ci64%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-31' class="type"><code id='Error.t-31'>type <a href='#associatedtype.Error-31' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-30' class="method"><code id='try_from.v-31'>fn <a href='#method.try_from-30' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for i16</code><a href='#impl-TryFrom%3Ci64%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-32' class="type"><code id='Error.t-32'>type <a href='#associatedtype.Error-32' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-31' class="method"><code id='try_from.v-32'>fn <a href='#method.try_from-31' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for i32</code><a href='#impl-TryFrom%3Ci64%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-33' class="type"><code id='Error.t-33'>type <a href='#associatedtype.Error-33' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-32' class="method"><code id='try_from.v-33'>fn <a href='#method.try_from-32' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for u8</code><a href='#impl-TryFrom%3Ci64%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-34' class="type"><code id='Error.t-34'>type <a href='#associatedtype.Error-34' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-33' class="method"><code id='try_from.v-34'>fn <a href='#method.try_from-33' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for u16</code><a href='#impl-TryFrom%3Ci64%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-35' class="type"><code id='Error.t-35'>type <a href='#associatedtype.Error-35' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-34' class="method"><code id='try_from.v-35'>fn <a href='#method.try_from-34' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-7' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for u32</code><a href='#impl-TryFrom%3Ci64%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-36' class="type"><code id='Error.t-36'>type <a href='#associatedtype.Error-36' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-35' class="method"><code id='try_from.v-36'>fn <a href='#method.try_from-35' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-8' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for u64</code><a href='#impl-TryFrom%3Ci64%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-37' class="type"><code id='Error.t-37'>type <a href='#associatedtype.Error-37' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-36' class="method"><code id='try_from.v-37'>fn <a href='#method.try_from-36' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci64%3E-9' class='impl'><code class='in-band'>impl TryFrom&lt;i64&gt; for u128</code><a href='#impl-TryFrom%3Ci64%3E-9' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-38' class="type"><code id='Error.t-38'>type <a href='#associatedtype.Error-38' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-37' class="method"><code id='try_from.v-38'>fn <a href='#method.try_from-37' class='fnname'>try_from</a>(u: i64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u128, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci8%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;i8&gt; for u8</code><a href='#impl-TryFrom%3Ci8%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-39' class="type"><code id='Error.t-39'>type <a href='#associatedtype.Error-39' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-38' class="method"><code id='try_from.v-39'>fn <a href='#method.try_from-38' class='fnname'>try_from</a>(u: i8) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci8%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;i8&gt; for u16</code><a href='#impl-TryFrom%3Ci8%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-40' class="type"><code id='Error.t-40'>type <a href='#associatedtype.Error-40' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-39' class="method"><code id='try_from.v-40'>fn <a href='#method.try_from-39' class='fnname'>try_from</a>(u: i8) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci8%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;i8&gt; for u32</code><a href='#impl-TryFrom%3Ci8%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-41' class="type"><code id='Error.t-41'>type <a href='#associatedtype.Error-41' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-40' class="method"><code id='try_from.v-41'>fn <a href='#method.try_from-40' class='fnname'>try_from</a>(u: i8) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci8%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;i8&gt; for u64</code><a href='#impl-TryFrom%3Ci8%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-42' class="type"><code id='Error.t-42'>type <a href='#associatedtype.Error-42' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-41' class="method"><code id='try_from.v-42'>fn <a href='#method.try_from-41' class='fnname'>try_from</a>(u: i8) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Ci8%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;i8&gt; for u128</code><a href='#impl-TryFrom%3Ci8%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-43' class="type"><code id='Error.t-43'>type <a href='#associatedtype.Error-43' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-42' class="method"><code id='try_from.v-43'>fn <a href='#method.try_from-42' class='fnname'>try_from</a>(u: i8) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u128, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for i8</code><a href='#impl-TryFrom%3Cisize%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-44' class="type"><code id='Error.t-44'>type <a href='#associatedtype.Error-44' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-43' class="method"><code id='try_from.v-44'>fn <a href='#method.try_from-43' class='fnname'>try_from</a>(u: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for i16</code><a href='#impl-TryFrom%3Cisize%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-45' class="type"><code id='Error.t-45'>type <a href='#associatedtype.Error-45' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-44' class="method"><code id='try_from.v-45'>fn <a href='#method.try_from-44' class='fnname'>try_from</a>(u: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for i32</code><a href='#impl-TryFrom%3Cisize%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-46' class="type"><code id='Error.t-46'>type <a href='#associatedtype.Error-46' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-45' class="method"><code id='try_from.v-46'>fn <a href='#method.try_from-45' class='fnname'>try_from</a>(value: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for i64</code><a href='#impl-TryFrom%3Cisize%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-47' class="type"><code id='Error.t-47'>type <a href='#associatedtype.Error-47' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-46' class="method"><code id='try_from.v-47'>fn <a href='#method.try_from-46' class='fnname'>try_from</a>(value: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for i128</code><a href='#impl-TryFrom%3Cisize%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-48' class="type"><code id='Error.t-48'>type <a href='#associatedtype.Error-48' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-47' class="method"><code id='try_from.v-48'>fn <a href='#method.try_from-47' class='fnname'>try_from</a>(value: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for u8</code><a href='#impl-TryFrom%3Cisize%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-49' class="type"><code id='Error.t-49'>type <a href='#associatedtype.Error-49' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-48' class="method"><code id='try_from.v-49'>fn <a href='#method.try_from-48' class='fnname'>try_from</a>(u: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for u16</code><a href='#impl-TryFrom%3Cisize%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4514-4530' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-50' class="type"><code id='Error.t-50'>type <a href='#associatedtype.Error-50' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-49' class="method"><code id='try_from.v-50'>fn <a href='#method.try_from-49' class='fnname'>try_from</a>(u: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4521-4529' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-7' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for u32</code><a href='#impl-TryFrom%3Cisize%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-51' class="type"><code id='Error.t-51'>type <a href='#associatedtype.Error-51' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-50' class="method"><code id='try_from.v-51'>fn <a href='#method.try_from-50' class='fnname'>try_from</a>(u: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-8' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for u64</code><a href='#impl-TryFrom%3Cisize%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-52' class="type"><code id='Error.t-52'>type <a href='#associatedtype.Error-52' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-51' class="method"><code id='try_from.v-52'>fn <a href='#method.try_from-51' class='fnname'>try_from</a>(u: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-9' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for u128</code><a href='#impl-TryFrom%3Cisize%3E-9' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-53' class="type"><code id='Error.t-53'>type <a href='#associatedtype.Error-53' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-52' class="method"><code id='try_from.v-53'>fn <a href='#method.try_from-52' class='fnname'>try_from</a>(u: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u128, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cisize%3E-10' class='impl'><code class='in-band'>impl TryFrom&lt;isize&gt; for usize</code><a href='#impl-TryFrom%3Cisize%3E-10' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4470-4484' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-54' class="type"><code id='Error.t-54'>type <a href='#associatedtype.Error-54' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-53' class="method"><code id='try_from.v-54'>fn <a href='#method.try_from-53' class='fnname'>try_from</a>(u: isize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;usize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4477-4483' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu16%3E' class='impl'><code class='in-band'>impl TryFrom&lt;u16&gt; for isize</code><a href='#impl-TryFrom%3Cu16%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-55' class="type"><code id='Error.t-55'>type <a href='#associatedtype.Error-55' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-54' class="method"><code id='try_from.v-55'>fn <a href='#method.try_from-54' class='fnname'>try_from</a>(value: u16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu32%3E' class='impl'><code class='in-band'>impl TryFrom&lt;u32&gt; for usize</code><a href='#impl-TryFrom%3Cu32%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-56' class="type"><code id='Error.t-56'>type <a href='#associatedtype.Error-56' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-55' class="method"><code id='try_from.v-56'>fn <a href='#method.try_from-55' class='fnname'>try_from</a>(value: u32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu32%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;u32&gt; for isize</code><a href='#impl-TryFrom%3Cu32%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-57' class="type"><code id='Error.t-57'>type <a href='#associatedtype.Error-57' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-56' class="method"><code id='try_from.v-57'>fn <a href='#method.try_from-56' class='fnname'>try_from</a>(u: u32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;isize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu32%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;u32&gt; for char</code><a href='#impl-TryFrom%3Cu32%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/char/convert.rs.html#222-233' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-58' class="type"><code id='Error.t-58'>type <a href='#associatedtype.Error-58' class="type">Error</a> = <a class="struct" href="../../core/char/struct.CharTryFromError.html" title="struct core::char::CharTryFromError">CharTryFromError</a></code></h4><h4 id='method.try_from-57' class="method hidden"><code id='try_from.v-58'>fn <a href='#method.try_from-57' class='fnname'>try_from</a>(i: u32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/char/convert.rs.html#226-232' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3Cu64%3E' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for usize</code><a href='#impl-TryFrom%3Cu64%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-59' class="type"><code id='Error.t-59'>type <a href='#associatedtype.Error-59' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-58' class="method"><code id='try_from.v-59'>fn <a href='#method.try_from-58' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;usize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu64%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for isize</code><a href='#impl-TryFrom%3Cu64%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-60' class="type"><code id='Error.t-60'>type <a href='#associatedtype.Error-60' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-59' class="method"><code id='try_from.v-60'>fn <a href='#method.try_from-59' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;isize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for usize</code><a href='#impl-TryFrom%3Cu128%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-61' class="type"><code id='Error.t-61'>type <a href='#associatedtype.Error-61' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-60' class="method"><code id='try_from.v-61'>fn <a href='#method.try_from-60' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;usize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for isize</code><a href='#impl-TryFrom%3Cu128%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-62' class="type"><code id='Error.t-62'>type <a href='#associatedtype.Error-62' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-61' class="method"><code id='try_from.v-62'>fn <a href='#method.try_from-61' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;isize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for i8</code><a href='#impl-TryFrom%3Cu128%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-63' class="type"><code id='Error.t-63'>type <a href='#associatedtype.Error-63' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-62' class="method"><code id='try_from.v-63'>fn <a href='#method.try_from-62' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for i16</code><a href='#impl-TryFrom%3Cu128%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-64' class="type"><code id='Error.t-64'>type <a href='#associatedtype.Error-64' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-63' class="method"><code id='try_from.v-64'>fn <a href='#method.try_from-63' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for i32</code><a href='#impl-TryFrom%3Cu128%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-65' class="type"><code id='Error.t-65'>type <a href='#associatedtype.Error-65' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-64' class="method"><code id='try_from.v-65'>fn <a href='#method.try_from-64' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for i64</code><a href='#impl-TryFrom%3Cu128%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-66' class="type"><code id='Error.t-66'>type <a href='#associatedtype.Error-66' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-65' class="method"><code id='try_from.v-66'>fn <a href='#method.try_from-65' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for i128</code><a href='#impl-TryFrom%3Cu128%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-67' class="type"><code id='Error.t-67'>type <a href='#associatedtype.Error-67' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-66' class="method"><code id='try_from.v-67'>fn <a href='#method.try_from-66' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i128, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-7' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for u8</code><a href='#impl-TryFrom%3Cu128%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-68' class="type"><code id='Error.t-68'>type <a href='#associatedtype.Error-68' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-67' class="method"><code id='try_from.v-68'>fn <a href='#method.try_from-67' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-8' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for u16</code><a href='#impl-TryFrom%3Cu128%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-69' class="type"><code id='Error.t-69'>type <a href='#associatedtype.Error-69' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-68' class="method"><code id='try_from.v-69'>fn <a href='#method.try_from-68' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-9' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for u32</code><a href='#impl-TryFrom%3Cu128%3E-9' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-70' class="type"><code id='Error.t-70'>type <a href='#associatedtype.Error-70' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-69' class="method"><code id='try_from.v-70'>fn <a href='#method.try_from-69' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu128%3E-10' class='impl'><code class='in-band'>impl TryFrom&lt;u128&gt; for u64</code><a href='#impl-TryFrom%3Cu128%3E-10' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-71' class="type"><code id='Error.t-71'>type <a href='#associatedtype.Error-71' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-70' class="method"><code id='try_from.v-71'>fn <a href='#method.try_from-70' class='fnname'>try_from</a>(u: u128) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu16%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;u16&gt; for i8</code><a href='#impl-TryFrom%3Cu16%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-72' class="type"><code id='Error.t-72'>type <a href='#associatedtype.Error-72' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-71' class="method"><code id='try_from.v-72'>fn <a href='#method.try_from-71' class='fnname'>try_from</a>(u: u16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu16%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;u16&gt; for i16</code><a href='#impl-TryFrom%3Cu16%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-73' class="type"><code id='Error.t-73'>type <a href='#associatedtype.Error-73' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-72' class="method"><code id='try_from.v-73'>fn <a href='#method.try_from-72' class='fnname'>try_from</a>(u: u16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu16%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;u16&gt; for u8</code><a href='#impl-TryFrom%3Cu16%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-74' class="type"><code id='Error.t-74'>type <a href='#associatedtype.Error-74' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-73' class="method"><code id='try_from.v-74'>fn <a href='#method.try_from-73' class='fnname'>try_from</a>(u: u16) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu32%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;u32&gt; for i8</code><a href='#impl-TryFrom%3Cu32%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-75' class="type"><code id='Error.t-75'>type <a href='#associatedtype.Error-75' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-74' class="method"><code id='try_from.v-75'>fn <a href='#method.try_from-74' class='fnname'>try_from</a>(u: u32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu32%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;u32&gt; for i16</code><a href='#impl-TryFrom%3Cu32%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-76' class="type"><code id='Error.t-76'>type <a href='#associatedtype.Error-76' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-75' class="method"><code id='try_from.v-76'>fn <a href='#method.try_from-75' class='fnname'>try_from</a>(u: u32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu32%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;u32&gt; for i32</code><a href='#impl-TryFrom%3Cu32%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-77' class="type"><code id='Error.t-77'>type <a href='#associatedtype.Error-77' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-76' class="method"><code id='try_from.v-77'>fn <a href='#method.try_from-76' class='fnname'>try_from</a>(u: u32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu32%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;u32&gt; for u8</code><a href='#impl-TryFrom%3Cu32%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-78' class="type"><code id='Error.t-78'>type <a href='#associatedtype.Error-78' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-77' class="method"><code id='try_from.v-78'>fn <a href='#method.try_from-77' class='fnname'>try_from</a>(u: u32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu32%3E-7' class='impl'><code class='in-band'>impl TryFrom&lt;u32&gt; for u16</code><a href='#impl-TryFrom%3Cu32%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-79' class="type"><code id='Error.t-79'>type <a href='#associatedtype.Error-79' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-78' class="method"><code id='try_from.v-79'>fn <a href='#method.try_from-78' class='fnname'>try_from</a>(u: u32) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu64%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for i8</code><a href='#impl-TryFrom%3Cu64%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-80' class="type"><code id='Error.t-80'>type <a href='#associatedtype.Error-80' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-79' class="method"><code id='try_from.v-80'>fn <a href='#method.try_from-79' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu64%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for i16</code><a href='#impl-TryFrom%3Cu64%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-81' class="type"><code id='Error.t-81'>type <a href='#associatedtype.Error-81' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-80' class="method"><code id='try_from.v-81'>fn <a href='#method.try_from-80' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu64%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for i32</code><a href='#impl-TryFrom%3Cu64%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-82' class="type"><code id='Error.t-82'>type <a href='#associatedtype.Error-82' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-81' class="method"><code id='try_from.v-82'>fn <a href='#method.try_from-81' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu64%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for i64</code><a href='#impl-TryFrom%3Cu64%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-83' class="type"><code id='Error.t-83'>type <a href='#associatedtype.Error-83' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-82' class="method"><code id='try_from.v-83'>fn <a href='#method.try_from-82' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i64, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu64%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for u8</code><a href='#impl-TryFrom%3Cu64%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-84' class="type"><code id='Error.t-84'>type <a href='#associatedtype.Error-84' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-83' class="method"><code id='try_from.v-84'>fn <a href='#method.try_from-83' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu64%3E-7' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for u16</code><a href='#impl-TryFrom%3Cu64%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-85' class="type"><code id='Error.t-85'>type <a href='#associatedtype.Error-85' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-84' class="method"><code id='try_from.v-85'>fn <a href='#method.try_from-84' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu64%3E-8' class='impl'><code class='in-band'>impl TryFrom&lt;u64&gt; for u32</code><a href='#impl-TryFrom%3Cu64%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-86' class="type"><code id='Error.t-86'>type <a href='#associatedtype.Error-86' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-85' class="method"><code id='try_from.v-86'>fn <a href='#method.try_from-85' class='fnname'>try_from</a>(u: u64) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cu8%3E' class='impl'><code class='in-band'>impl TryFrom&lt;u8&gt; for i8</code><a href='#impl-TryFrom%3Cu8%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-87' class="type"><code id='Error.t-87'>type <a href='#associatedtype.Error-87' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-86' class="method"><code id='try_from.v-87'>fn <a href='#method.try_from-86' class='fnname'>try_from</a>(u: u8) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for i8</code><a href='#impl-TryFrom%3Cusize%3E' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-88' class="type"><code id='Error.t-88'>type <a href='#associatedtype.Error-88' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-87' class="method"><code id='try_from.v-88'>fn <a href='#method.try_from-87' class='fnname'>try_from</a>(u: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-1' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for i16</code><a href='#impl-TryFrom%3Cusize%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-89' class="type"><code id='Error.t-89'>type <a href='#associatedtype.Error-89' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-88' class="method"><code id='try_from.v-89'>fn <a href='#method.try_from-88' class='fnname'>try_from</a>(u: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-2' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for i32</code><a href='#impl-TryFrom%3Cusize%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-90' class="type"><code id='Error.t-90'>type <a href='#associatedtype.Error-90' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-89' class="method"><code id='try_from.v-90'>fn <a href='#method.try_from-89' class='fnname'>try_from</a>(u: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;i32, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-3' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for i64</code><a href='#impl-TryFrom%3Cusize%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-91' class="type"><code id='Error.t-91'>type <a href='#associatedtype.Error-91' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-90' class="method"><code id='try_from.v-91'>fn <a href='#method.try_from-90' class='fnname'>try_from</a>(value: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-4' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for i128</code><a href='#impl-TryFrom%3Cusize%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-92' class="type"><code id='Error.t-92'>type <a href='#associatedtype.Error-92' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-91' class="method"><code id='try_from.v-92'>fn <a href='#method.try_from-91' class='fnname'>try_from</a>(value: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-5' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for isize</code><a href='#impl-TryFrom%3Cusize%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-93' class="type"><code id='Error.t-93'>type <a href='#associatedtype.Error-93' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-92' class="method"><code id='try_from.v-93'>fn <a href='#method.try_from-92' class='fnname'>try_from</a>(u: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;isize, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-6' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for u8</code><a href='#impl-TryFrom%3Cusize%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-94' class="type"><code id='Error.t-94'>type <a href='#associatedtype.Error-94' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-93' class="method"><code id='try_from.v-94'>fn <a href='#method.try_from-93' class='fnname'>try_from</a>(u: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u8, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-7' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for u16</code><a href='#impl-TryFrom%3Cusize%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4492-4506' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-95' class="type"><code id='Error.t-95'>type <a href='#associatedtype.Error-95' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-94' class="method"><code id='try_from.v-95'>fn <a href='#method.try_from-94' class='fnname'>try_from</a>(u: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;u16, <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4499-4505' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-8' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for u32</code><a href='#impl-TryFrom%3Cusize%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-96' class="type"><code id='Error.t-96'>type <a href='#associatedtype.Error-96' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-95' class="method"><code id='try_from.v-96'>fn <a href='#method.try_from-95' class='fnname'>try_from</a>(value: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-9' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for u64</code><a href='#impl-TryFrom%3Cusize%3E-9' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-97' class="type"><code id='Error.t-97'>type <a href='#associatedtype.Error-97' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-96' class="method"><code id='try_from.v-97'>fn <a href='#method.try_from-96' class='fnname'>try_from</a>(value: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3Cusize%3E-10' class='impl'><code class='in-band'>impl TryFrom&lt;usize&gt; for u128</code><a href='#impl-TryFrom%3Cusize%3E-10' class='anchor'></a><a class='srclink' href='../../src/core/num/mod.rs.html#4452-4462' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-98' class="type"><code id='Error.t-98'>type <a href='#associatedtype.Error-98' class="type">Error</a> = <a class="struct" href="../../core/num/struct.TryFromIntError.html" title="struct core::num::TryFromIntError">TryFromIntError</a></code></h4><h4 id='method.try_from-97' class="method"><code id='try_from.v-98'>fn <a href='#method.try_from-97' class='fnname'>try_from</a>(value: usize) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/num/mod.rs.html#4459-4461' title='goto source code'>[src]</a></h4><div class='docblock'><p>Try to create the target number type from a source
number type. This returns an error if the source value
is outside of the range of the target type.</p>
</div></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 0]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-99' class="type"><code id='Error.t-99'>type <a href='#associatedtype.Error-99' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-98' class="method hidden"><code id='try_from.v-99'>fn <a href='#method.try_from-98' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 0], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 1]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-100' class="type"><code id='Error.t-100'>type <a href='#associatedtype.Error-100' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-99' class="method hidden"><code id='try_from.v-100'>fn <a href='#method.try_from-99' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 1], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-2' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 2]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-101' class="type"><code id='Error.t-101'>type <a href='#associatedtype.Error-101' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-100' class="method hidden"><code id='try_from.v-101'>fn <a href='#method.try_from-100' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 2], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-3' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 3]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-102' class="type"><code id='Error.t-102'>type <a href='#associatedtype.Error-102' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-101' class="method hidden"><code id='try_from.v-102'>fn <a href='#method.try_from-101' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 3], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-4' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 4]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-103' class="type"><code id='Error.t-103'>type <a href='#associatedtype.Error-103' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-102' class="method hidden"><code id='try_from.v-103'>fn <a href='#method.try_from-102' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 4], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-5' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 5]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-104' class="type"><code id='Error.t-104'>type <a href='#associatedtype.Error-104' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-103' class="method hidden"><code id='try_from.v-104'>fn <a href='#method.try_from-103' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 5], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-6' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 6]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-105' class="type"><code id='Error.t-105'>type <a href='#associatedtype.Error-105' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-104' class="method hidden"><code id='try_from.v-105'>fn <a href='#method.try_from-104' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 6], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-7' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 7]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-106' class="type"><code id='Error.t-106'>type <a href='#associatedtype.Error-106' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-105' class="method hidden"><code id='try_from.v-106'>fn <a href='#method.try_from-105' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 7], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-8' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 8]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-107' class="type"><code id='Error.t-107'>type <a href='#associatedtype.Error-107' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-106' class="method hidden"><code id='try_from.v-107'>fn <a href='#method.try_from-106' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 8], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-9' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 9]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-9' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-108' class="type"><code id='Error.t-108'>type <a href='#associatedtype.Error-108' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-107' class="method hidden"><code id='try_from.v-108'>fn <a href='#method.try_from-107' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 9], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-10' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 10]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-10' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-109' class="type"><code id='Error.t-109'>type <a href='#associatedtype.Error-109' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-108' class="method hidden"><code id='try_from.v-109'>fn <a href='#method.try_from-108' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 10], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-11' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 11]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-11' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-110' class="type"><code id='Error.t-110'>type <a href='#associatedtype.Error-110' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-109' class="method hidden"><code id='try_from.v-110'>fn <a href='#method.try_from-109' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 11], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-12' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 12]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-12' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-111' class="type"><code id='Error.t-111'>type <a href='#associatedtype.Error-111' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-110' class="method hidden"><code id='try_from.v-111'>fn <a href='#method.try_from-110' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 12], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-13' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 13]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-13' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-112' class="type"><code id='Error.t-112'>type <a href='#associatedtype.Error-112' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-111' class="method hidden"><code id='try_from.v-112'>fn <a href='#method.try_from-111' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 13], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-14' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 14]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-14' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-113' class="type"><code id='Error.t-113'>type <a href='#associatedtype.Error-113' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-112' class="method hidden"><code id='try_from.v-113'>fn <a href='#method.try_from-112' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 14], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-15' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 15]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-15' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-114' class="type"><code id='Error.t-114'>type <a href='#associatedtype.Error-114' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-113' class="method hidden"><code id='try_from.v-114'>fn <a href='#method.try_from-113' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 15], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-16' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 16]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-16' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-115' class="type"><code id='Error.t-115'>type <a href='#associatedtype.Error-115' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-114' class="method hidden"><code id='try_from.v-115'>fn <a href='#method.try_from-114' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 16], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-17' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 17]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-17' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-116' class="type"><code id='Error.t-116'>type <a href='#associatedtype.Error-116' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-115' class="method hidden"><code id='try_from.v-116'>fn <a href='#method.try_from-115' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 17], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-18' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 18]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-18' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-117' class="type"><code id='Error.t-117'>type <a href='#associatedtype.Error-117' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-116' class="method hidden"><code id='try_from.v-117'>fn <a href='#method.try_from-116' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 18], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-19' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 19]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-19' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-118' class="type"><code id='Error.t-118'>type <a href='#associatedtype.Error-118' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-117' class="method hidden"><code id='try_from.v-118'>fn <a href='#method.try_from-117' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 19], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-20' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 20]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-20' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-119' class="type"><code id='Error.t-119'>type <a href='#associatedtype.Error-119' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-118' class="method hidden"><code id='try_from.v-119'>fn <a href='#method.try_from-118' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 20], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-21' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 21]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-21' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-120' class="type"><code id='Error.t-120'>type <a href='#associatedtype.Error-120' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-119' class="method hidden"><code id='try_from.v-120'>fn <a href='#method.try_from-119' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 21], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-22' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 22]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-22' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-121' class="type"><code id='Error.t-121'>type <a href='#associatedtype.Error-121' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-120' class="method hidden"><code id='try_from.v-121'>fn <a href='#method.try_from-120' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 22], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-23' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 23]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-23' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-122' class="type"><code id='Error.t-122'>type <a href='#associatedtype.Error-122' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-121' class="method hidden"><code id='try_from.v-122'>fn <a href='#method.try_from-121' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 23], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-24' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 24]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-24' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-123' class="type"><code id='Error.t-123'>type <a href='#associatedtype.Error-123' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-122' class="method hidden"><code id='try_from.v-123'>fn <a href='#method.try_from-122' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 24], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-25' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 25]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-25' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-124' class="type"><code id='Error.t-124'>type <a href='#associatedtype.Error-124' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-123' class="method hidden"><code id='try_from.v-124'>fn <a href='#method.try_from-123' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 25], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-26' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 26]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-26' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-125' class="type"><code id='Error.t-125'>type <a href='#associatedtype.Error-125' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-124' class="method hidden"><code id='try_from.v-125'>fn <a href='#method.try_from-124' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 26], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-27' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 27]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-27' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-126' class="type"><code id='Error.t-126'>type <a href='#associatedtype.Error-126' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-125' class="method hidden"><code id='try_from.v-126'>fn <a href='#method.try_from-125' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 27], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-28' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 28]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-28' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-127' class="type"><code id='Error.t-127'>type <a href='#associatedtype.Error-127' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-126' class="method hidden"><code id='try_from.v-127'>fn <a href='#method.try_from-126' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 28], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-29' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 29]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-29' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-128' class="type"><code id='Error.t-128'>type <a href='#associatedtype.Error-128' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-127' class="method hidden"><code id='try_from.v-128'>fn <a href='#method.try_from-127' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 29], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-30' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 30]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-30' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-129' class="type"><code id='Error.t-129'>type <a href='#associatedtype.Error-129' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-128' class="method hidden"><code id='try_from.v-129'>fn <a href='#method.try_from-128' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 30], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-31' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 31]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-31' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-130' class="type"><code id='Error.t-130'>type <a href='#associatedtype.Error-130' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-129' class="method hidden"><code id='try_from.v-130'>fn <a href='#method.try_from-129' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 31], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20%5BT%5D%3E-32' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a [T]&gt; for &amp;'a [T; 32]</code><a href='#impl-TryFrom%3C%26%27a%20%5BT%5D%3E-32' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#153-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-131' class="type"><code id='Error.t-131'>type <a href='#associatedtype.Error-131' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-130' class="method hidden"><code id='try_from.v-131'>fn <a href='#method.try_from-130' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;[T; 32], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#156-163' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 0]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-132' class="type"><code id='Error.t-132'>type <a href='#associatedtype.Error-132' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-131' class="method hidden"><code id='try_from.v-132'>fn <a href='#method.try_from-131' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 0], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 1]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-133' class="type"><code id='Error.t-133'>type <a href='#associatedtype.Error-133' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-132' class="method hidden"><code id='try_from.v-133'>fn <a href='#method.try_from-132' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 1], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-2' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 2]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-134' class="type"><code id='Error.t-134'>type <a href='#associatedtype.Error-134' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-133' class="method hidden"><code id='try_from.v-134'>fn <a href='#method.try_from-133' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 2], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-3' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 3]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-135' class="type"><code id='Error.t-135'>type <a href='#associatedtype.Error-135' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-134' class="method hidden"><code id='try_from.v-135'>fn <a href='#method.try_from-134' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 3], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-4' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 4]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-136' class="type"><code id='Error.t-136'>type <a href='#associatedtype.Error-136' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-135' class="method hidden"><code id='try_from.v-136'>fn <a href='#method.try_from-135' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 4], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-5' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 5]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-137' class="type"><code id='Error.t-137'>type <a href='#associatedtype.Error-137' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-136' class="method hidden"><code id='try_from.v-137'>fn <a href='#method.try_from-136' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 5], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-6' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 6]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-138' class="type"><code id='Error.t-138'>type <a href='#associatedtype.Error-138' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-137' class="method hidden"><code id='try_from.v-138'>fn <a href='#method.try_from-137' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 6], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-7' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 7]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-139' class="type"><code id='Error.t-139'>type <a href='#associatedtype.Error-139' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-138' class="method hidden"><code id='try_from.v-139'>fn <a href='#method.try_from-138' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 7], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-8' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 8]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-140' class="type"><code id='Error.t-140'>type <a href='#associatedtype.Error-140' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-139' class="method hidden"><code id='try_from.v-140'>fn <a href='#method.try_from-139' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 8], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-9' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 9]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-9' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-141' class="type"><code id='Error.t-141'>type <a href='#associatedtype.Error-141' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-140' class="method hidden"><code id='try_from.v-141'>fn <a href='#method.try_from-140' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 9], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-10' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 10]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-10' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-142' class="type"><code id='Error.t-142'>type <a href='#associatedtype.Error-142' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-141' class="method hidden"><code id='try_from.v-142'>fn <a href='#method.try_from-141' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 10], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-11' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 11]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-11' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-143' class="type"><code id='Error.t-143'>type <a href='#associatedtype.Error-143' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-142' class="method hidden"><code id='try_from.v-143'>fn <a href='#method.try_from-142' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 11], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-12' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 12]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-12' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-144' class="type"><code id='Error.t-144'>type <a href='#associatedtype.Error-144' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-143' class="method hidden"><code id='try_from.v-144'>fn <a href='#method.try_from-143' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 12], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-13' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 13]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-13' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-145' class="type"><code id='Error.t-145'>type <a href='#associatedtype.Error-145' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-144' class="method hidden"><code id='try_from.v-145'>fn <a href='#method.try_from-144' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 13], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-14' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 14]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-14' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-146' class="type"><code id='Error.t-146'>type <a href='#associatedtype.Error-146' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-145' class="method hidden"><code id='try_from.v-146'>fn <a href='#method.try_from-145' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 14], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-15' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 15]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-15' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-147' class="type"><code id='Error.t-147'>type <a href='#associatedtype.Error-147' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-146' class="method hidden"><code id='try_from.v-147'>fn <a href='#method.try_from-146' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 15], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-16' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 16]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-16' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-148' class="type"><code id='Error.t-148'>type <a href='#associatedtype.Error-148' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-147' class="method hidden"><code id='try_from.v-148'>fn <a href='#method.try_from-147' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 16], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-17' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 17]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-17' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-149' class="type"><code id='Error.t-149'>type <a href='#associatedtype.Error-149' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-148' class="method hidden"><code id='try_from.v-149'>fn <a href='#method.try_from-148' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 17], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-18' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 18]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-18' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-150' class="type"><code id='Error.t-150'>type <a href='#associatedtype.Error-150' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-149' class="method hidden"><code id='try_from.v-150'>fn <a href='#method.try_from-149' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 18], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-19' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 19]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-19' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-151' class="type"><code id='Error.t-151'>type <a href='#associatedtype.Error-151' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-150' class="method hidden"><code id='try_from.v-151'>fn <a href='#method.try_from-150' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 19], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-20' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 20]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-20' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-152' class="type"><code id='Error.t-152'>type <a href='#associatedtype.Error-152' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-151' class="method hidden"><code id='try_from.v-152'>fn <a href='#method.try_from-151' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 20], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-21' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 21]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-21' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-153' class="type"><code id='Error.t-153'>type <a href='#associatedtype.Error-153' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-152' class="method hidden"><code id='try_from.v-153'>fn <a href='#method.try_from-152' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 21], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-22' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 22]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-22' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-154' class="type"><code id='Error.t-154'>type <a href='#associatedtype.Error-154' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-153' class="method hidden"><code id='try_from.v-154'>fn <a href='#method.try_from-153' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 22], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-23' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 23]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-23' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-155' class="type"><code id='Error.t-155'>type <a href='#associatedtype.Error-155' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-154' class="method hidden"><code id='try_from.v-155'>fn <a href='#method.try_from-154' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 23], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-24' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 24]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-24' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-156' class="type"><code id='Error.t-156'>type <a href='#associatedtype.Error-156' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-155' class="method hidden"><code id='try_from.v-156'>fn <a href='#method.try_from-155' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 24], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-25' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 25]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-25' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-157' class="type"><code id='Error.t-157'>type <a href='#associatedtype.Error-157' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-156' class="method hidden"><code id='try_from.v-157'>fn <a href='#method.try_from-156' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 25], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-26' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 26]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-26' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-158' class="type"><code id='Error.t-158'>type <a href='#associatedtype.Error-158' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-157' class="method hidden"><code id='try_from.v-158'>fn <a href='#method.try_from-157' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 26], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-27' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 27]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-27' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-159' class="type"><code id='Error.t-159'>type <a href='#associatedtype.Error-159' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-158' class="method hidden"><code id='try_from.v-159'>fn <a href='#method.try_from-158' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 27], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-28' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 28]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-28' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-160' class="type"><code id='Error.t-160'>type <a href='#associatedtype.Error-160' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-159' class="method hidden"><code id='try_from.v-160'>fn <a href='#method.try_from-159' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 28], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-29' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 29]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-29' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-161' class="type"><code id='Error.t-161'>type <a href='#associatedtype.Error-161' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-160' class="method hidden"><code id='try_from.v-161'>fn <a href='#method.try_from-160' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 29], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-30' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 30]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-30' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-162' class="type"><code id='Error.t-162'>type <a href='#associatedtype.Error-162' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-161' class="method hidden"><code id='try_from.v-162'>fn <a href='#method.try_from-161' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 30], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-31' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 31]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-31' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-163' class="type"><code id='Error.t-163'>type <a href='#associatedtype.Error-163' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-162' class="method hidden"><code id='try_from.v-163'>fn <a href='#method.try_from-162' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 31], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-32' class='impl'><code class='in-band'>impl&lt;'a, T&gt; TryFrom&lt;&amp;'a mut [T]&gt; for &amp;'a mut [T; 32]</code><a href='#impl-TryFrom%3C%26%27a%20mut%20%5BT%5D%3E-32' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#167-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-164' class="type"><code id='Error.t-164'>type <a href='#associatedtype.Error-164' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-163' class="method hidden"><code id='try_from.v-164'>fn <a href='#method.try_from-163' class='fnname'>try_from</a>(slice: &amp;mut [T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;&amp;mut [T; 32], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#170-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 0] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-165' class="type"><code id='Error.t-165'>type <a href='#associatedtype.Error-165' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-164' class="method hidden"><code id='try_from.v-165'>fn <a href='#method.try_from-164' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 0], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-1' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 1] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-1' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-166' class="type"><code id='Error.t-166'>type <a href='#associatedtype.Error-166' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-165' class="method hidden"><code id='try_from.v-166'>fn <a href='#method.try_from-165' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 1], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-2' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 2] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-2' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-167' class="type"><code id='Error.t-167'>type <a href='#associatedtype.Error-167' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-166' class="method hidden"><code id='try_from.v-167'>fn <a href='#method.try_from-166' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 2], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-3' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 3] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-3' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-168' class="type"><code id='Error.t-168'>type <a href='#associatedtype.Error-168' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-167' class="method hidden"><code id='try_from.v-168'>fn <a href='#method.try_from-167' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 3], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-4' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 4] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-4' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-169' class="type"><code id='Error.t-169'>type <a href='#associatedtype.Error-169' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-168' class="method hidden"><code id='try_from.v-169'>fn <a href='#method.try_from-168' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 4], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-5' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 5] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-5' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-170' class="type"><code id='Error.t-170'>type <a href='#associatedtype.Error-170' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-169' class="method hidden"><code id='try_from.v-170'>fn <a href='#method.try_from-169' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 5], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-6' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 6] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-6' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-171' class="type"><code id='Error.t-171'>type <a href='#associatedtype.Error-171' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-170' class="method hidden"><code id='try_from.v-171'>fn <a href='#method.try_from-170' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 6], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-7' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 7] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-7' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-172' class="type"><code id='Error.t-172'>type <a href='#associatedtype.Error-172' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-171' class="method hidden"><code id='try_from.v-172'>fn <a href='#method.try_from-171' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 7], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-8' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 8] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-8' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-173' class="type"><code id='Error.t-173'>type <a href='#associatedtype.Error-173' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-172' class="method hidden"><code id='try_from.v-173'>fn <a href='#method.try_from-172' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 8], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-9' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 9] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-9' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-174' class="type"><code id='Error.t-174'>type <a href='#associatedtype.Error-174' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-173' class="method hidden"><code id='try_from.v-174'>fn <a href='#method.try_from-173' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 9], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-10' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 10] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-10' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-175' class="type"><code id='Error.t-175'>type <a href='#associatedtype.Error-175' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-174' class="method hidden"><code id='try_from.v-175'>fn <a href='#method.try_from-174' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 10], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-11' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 11] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-11' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-176' class="type"><code id='Error.t-176'>type <a href='#associatedtype.Error-176' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-175' class="method hidden"><code id='try_from.v-176'>fn <a href='#method.try_from-175' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 11], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-12' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 12] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-12' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-177' class="type"><code id='Error.t-177'>type <a href='#associatedtype.Error-177' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-176' class="method hidden"><code id='try_from.v-177'>fn <a href='#method.try_from-176' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 12], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-13' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 13] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-13' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-178' class="type"><code id='Error.t-178'>type <a href='#associatedtype.Error-178' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-177' class="method hidden"><code id='try_from.v-178'>fn <a href='#method.try_from-177' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 13], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-14' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 14] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-14' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-179' class="type"><code id='Error.t-179'>type <a href='#associatedtype.Error-179' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-178' class="method hidden"><code id='try_from.v-179'>fn <a href='#method.try_from-178' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 14], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-15' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 15] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-15' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-180' class="type"><code id='Error.t-180'>type <a href='#associatedtype.Error-180' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-179' class="method hidden"><code id='try_from.v-180'>fn <a href='#method.try_from-179' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 15], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-16' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 16] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-16' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-181' class="type"><code id='Error.t-181'>type <a href='#associatedtype.Error-181' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-180' class="method hidden"><code id='try_from.v-181'>fn <a href='#method.try_from-180' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 16], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-17' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 17] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-17' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-182' class="type"><code id='Error.t-182'>type <a href='#associatedtype.Error-182' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-181' class="method hidden"><code id='try_from.v-182'>fn <a href='#method.try_from-181' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 17], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-18' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 18] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-18' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-183' class="type"><code id='Error.t-183'>type <a href='#associatedtype.Error-183' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-182' class="method hidden"><code id='try_from.v-183'>fn <a href='#method.try_from-182' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 18], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-19' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 19] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-19' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-184' class="type"><code id='Error.t-184'>type <a href='#associatedtype.Error-184' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-183' class="method hidden"><code id='try_from.v-184'>fn <a href='#method.try_from-183' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 19], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-20' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 20] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-20' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-185' class="type"><code id='Error.t-185'>type <a href='#associatedtype.Error-185' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-184' class="method hidden"><code id='try_from.v-185'>fn <a href='#method.try_from-184' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 20], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-21' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 21] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-21' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-186' class="type"><code id='Error.t-186'>type <a href='#associatedtype.Error-186' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-185' class="method hidden"><code id='try_from.v-186'>fn <a href='#method.try_from-185' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 21], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-22' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 22] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-22' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-187' class="type"><code id='Error.t-187'>type <a href='#associatedtype.Error-187' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-186' class="method hidden"><code id='try_from.v-187'>fn <a href='#method.try_from-186' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 22], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-23' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 23] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-23' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-188' class="type"><code id='Error.t-188'>type <a href='#associatedtype.Error-188' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-187' class="method hidden"><code id='try_from.v-188'>fn <a href='#method.try_from-187' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 23], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-24' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 24] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-24' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-189' class="type"><code id='Error.t-189'>type <a href='#associatedtype.Error-189' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-188' class="method hidden"><code id='try_from.v-189'>fn <a href='#method.try_from-188' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 24], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-25' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 25] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-25' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-190' class="type"><code id='Error.t-190'>type <a href='#associatedtype.Error-190' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-189' class="method hidden"><code id='try_from.v-190'>fn <a href='#method.try_from-189' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 25], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-26' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 26] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-26' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-191' class="type"><code id='Error.t-191'>type <a href='#associatedtype.Error-191' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-190' class="method hidden"><code id='try_from.v-191'>fn <a href='#method.try_from-190' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 26], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-27' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 27] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-27' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-192' class="type"><code id='Error.t-192'>type <a href='#associatedtype.Error-192' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-191' class="method hidden"><code id='try_from.v-192'>fn <a href='#method.try_from-191' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 27], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-28' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 28] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-28' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-193' class="type"><code id='Error.t-193'>type <a href='#associatedtype.Error-193' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-192' class="method hidden"><code id='try_from.v-193'>fn <a href='#method.try_from-192' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 28], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-29' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 29] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-29' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-194' class="type"><code id='Error.t-194'>type <a href='#associatedtype.Error-194' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-193' class="method hidden"><code id='try_from.v-194'>fn <a href='#method.try_from-193' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 29], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-30' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 30] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-30' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-195' class="type"><code id='Error.t-195'>type <a href='#associatedtype.Error-195' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-194' class="method hidden"><code id='try_from.v-195'>fn <a href='#method.try_from-194' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 30], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-31' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 31] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-31' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-196' class="type"><code id='Error.t-196'>type <a href='#associatedtype.Error-196' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-195' class="method hidden"><code id='try_from.v-196'>fn <a href='#method.try_from-195' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 31], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3C%26%27_%20%5BT%5D%3E-32' class='impl'><code class='in-band'>impl&lt;T, '_&gt; TryFrom&lt;&amp;'_ [T]&gt; for [T; 32] <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TryFrom%3C%26%27_%20%5BT%5D%3E-32' class='anchor'></a><a class='srclink' href='../../src/core/array.rs.html#144-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-197' class="type"><code id='Error.t-197'>type <a href='#associatedtype.Error-197' class="type">Error</a> = <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a></code></h4><h4 id='method.try_from-196' class="method hidden"><code id='try_from.v-197'>fn <a href='#method.try_from-196' class='fnname'>try_from</a>(slice: &amp;[T]) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;[T; 32], <a class="struct" href="../../core/array/struct.TryFromSliceError.html" title="struct core::array::TryFromSliceError">TryFromSliceError</a>&gt;</code><a class='srclink' href='../../src/core/array.rs.html#147-149' title='goto source code'>[src]</a></h4></div><h3 id='impl-TryFrom%3CU%3E' class='impl'><code class='in-band'>impl&lt;T, U&gt; TryFrom&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="../../core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-TryFrom%3CU%3E' class='anchor'></a><a class='srclink' href='../../src/core/convert.rs.html#565-571' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-198' class="type"><code id='Error.t-198'>type <a href='#associatedtype.Error-198' class="type">Error</a> = <a class="enum" href="../../core/convert/enum.Infallible.html" title="enum core::convert::Infallible">Infallible</a></code></h4><h4 id='method.try_from-197' class="method hidden"><code id='try_from.v-198'>fn <a href='#method.try_from-197' class='fnname'>try_from</a>(value: U) -&gt; <a class="enum" href="../../core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../../core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='../../src/core/convert.rs.html#568-570' title='goto source code'>[src]</a></h4></div></div><span class='loading-content'>Loading content...</span><script type="text/javascript">window.inlined_types=new Set([]);</script><script type="text/javascript" async
                         src="../../implementors/core/convert/trait.TryFrom.js">
                 </script></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 = "core";</script><script src="../../aliases.js"></script><script src="../../main1.35.0.js"></script><script defer src="../../search-index.js"></script></body></html>