Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > e50df336eb49b92dbadf6dedc48b7934 > files > 13251

rust-doc-1.27.0-1.mga6.x86_64.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 `IntoIterator` trait in crate `std`."><meta name="keywords" content="rust, rustlang, rust-lang, IntoIterator"><title>std::iter::IntoIterator - Rust</title><link rel="stylesheet" type="text/css" href="../../normalize.css"><link rel="stylesheet" type="text/css" href="../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../dark.css"><link rel="stylesheet" type="text/css" href="../../light.css" id="themeStyle"><script src="../../storage.js"></script><link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico"></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='../../std/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a><p class='location'>Trait IntoIterator</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.Item">Item</a><a href="#associatedtype.IntoIter">IntoIter</a></div><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.into_iter">into_iter</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='../index.html'>std</a>::<wbr><a href='index.html'>iter</a></p><script>window.sidebarCurrent = {name: 'IntoIterator', 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="../../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../../theme.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"><a id="settings-menu" href="../../settings.html"><img src="../../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='in-band'>Trait <a href='../index.html'>std</a>::<wbr><a href='index.html'>iter</a>::<wbr><a class="trait" href=''>IntoIterator</a></span><span class='out-of-band'><span class='since' title='Stable since Rust version 1.0.0'>1.0.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/iter/traits.rs.html#219-249' title='goto source code'>[src]</a></span></h1><div class="docblock type-decl"><pre class='rust trait'>pub trait IntoIterator <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;Self::<a class="type" href="../../std/iter/trait.IntoIterator.html#associatedtype.IntoIter" title="type std::iter::IntoIterator::IntoIter">IntoIter</a> as <a class="trait" href="../../std/iter/trait.Iterator.html" title="trait std::iter::Iterator">Iterator</a>&gt;::<a class="type" href="../../std/iter/trait.Iterator.html#associatedtype.Item" title="type std::iter::Iterator::Item">Item</a> == Self::<a class="type" href="../../std/iter/trait.IntoIterator.html#associatedtype.Item" title="type std::iter::IntoIterator::Item">Item</a>,&nbsp;</span>{
    type <a href='#associatedtype.Item' class="type">Item</a>;
    type <a href='#associatedtype.IntoIter' class="type">IntoIter</a>: <a class="trait" href="../../std/iter/trait.Iterator.html" title="trait std::iter::Iterator">Iterator</a>;
    fn <a href='#tymethod.into_iter' class='fnname'>into_iter</a>(self) -&gt; Self::<a class="type" href="../../std/iter/trait.IntoIterator.html#associatedtype.IntoIter" title="type std::iter::IntoIterator::IntoIter">IntoIter</a>;
}</pre></div><div class='docblock'><p>Conversion into an <code>Iterator</code>.</p>
<p>By implementing <code>IntoIterator</code> for a type, you define how it will be
converted to an iterator. This is common for types which describe a
collection of some kind.</p>
<p>One benefit of implementing <code>IntoIterator</code> is that your type will <a href="index.html#for-loops-and-intoiterator">work
with Rust's <code>for</code> loop syntax</a>.</p>
<p>See also: <a href="trait.FromIterator.html"><code>FromIterator</code></a>.</p>
<h1 id="examples" class="section-header"><a href="#examples">Examples</a></h1>
<p>Basic usage:</p>

<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">v</span> <span class="op">=</span> <span class="macro">vec</span><span class="macro">!</span>[<span class="number">1</span>, <span class="number">2</span>, <span class="number">3</span>];
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">iter</span> <span class="op">=</span> <span class="ident">v</span>.<span class="ident">into_iter</span>();

<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="prelude-val">Some</span>(<span class="number">1</span>), <span class="ident">iter</span>.<span class="ident">next</span>());
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="prelude-val">Some</span>(<span class="number">2</span>), <span class="ident">iter</span>.<span class="ident">next</span>());
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="prelude-val">Some</span>(<span class="number">3</span>), <span class="ident">iter</span>.<span class="ident">next</span>());
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="prelude-val">None</span>, <span class="ident">iter</span>.<span class="ident">next</span>());<a class="test-arrow" target="_blank" href="https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn%20main()%20%7B%0Alet%20v%20%3D%20vec!%5B1%2C%202%2C%203%5D%3B%0Alet%20mut%20iter%20%3D%20v.into_iter()%3B%0A%0Aassert_eq!(Some(1)%2C%20iter.next())%3B%0Aassert_eq!(Some(2)%2C%20iter.next())%3B%0Aassert_eq!(Some(3)%2C%20iter.next())%3B%0Aassert_eq!(None%2C%20iter.next())%3B%0A%7D">Run</a></pre>
<p>Implementing <code>IntoIterator</code> for your type:</p>

<pre class="rust rust-example-rendered">
<span class="comment">// A sample collection, that&#39;s just a wrapper over Vec&lt;T&gt;</span>
<span class="attribute">#[<span class="ident">derive</span>(<span class="ident">Debug</span>)]</span>
<span class="kw">struct</span> <span class="ident">MyCollection</span>(<span class="ident">Vec</span><span class="op">&lt;</span><span class="ident">i32</span><span class="op">&gt;</span>);

<span class="comment">// Let&#39;s give it some methods so we can create one and add things</span>
<span class="comment">// to it.</span>
<span class="kw">impl</span> <span class="ident">MyCollection</span> {
    <span class="kw">fn</span> <span class="ident">new</span>() <span class="op">-&gt;</span> <span class="ident">MyCollection</span> {
        <span class="ident">MyCollection</span>(<span class="ident">Vec</span>::<span class="ident">new</span>())
    }

    <span class="kw">fn</span> <span class="ident">add</span>(<span class="kw-2">&amp;</span><span class="kw-2">mut</span> <span class="self">self</span>, <span class="ident">elem</span>: <span class="ident">i32</span>) {
        <span class="self">self</span>.<span class="number">0</span>.<span class="ident">push</span>(<span class="ident">elem</span>);
    }
}

<span class="comment">// and we&#39;ll implement IntoIterator</span>
<span class="kw">impl</span> <span class="ident">IntoIterator</span> <span class="kw">for</span> <span class="ident">MyCollection</span> {
    <span class="kw">type</span> <span class="ident">Item</span> <span class="op">=</span> <span class="ident">i32</span>;
    <span class="kw">type</span> <span class="ident">IntoIter</span> <span class="op">=</span> ::<span class="ident">std</span>::<span class="ident">vec</span>::<span class="ident">IntoIter</span><span class="op">&lt;</span><span class="ident">i32</span><span class="op">&gt;</span>;

    <span class="kw">fn</span> <span class="ident">into_iter</span>(<span class="self">self</span>) <span class="op">-&gt;</span> <span class="self">Self</span>::<span class="ident">IntoIter</span> {
        <span class="self">self</span>.<span class="number">0</span>.<span class="ident">into_iter</span>()
    }
}

<span class="comment">// Now we can make a new collection...</span>
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">c</span> <span class="op">=</span> <span class="ident">MyCollection</span>::<span class="ident">new</span>();

<span class="comment">// ... add some stuff to it ...</span>
<span class="ident">c</span>.<span class="ident">add</span>(<span class="number">0</span>);
<span class="ident">c</span>.<span class="ident">add</span>(<span class="number">1</span>);
<span class="ident">c</span>.<span class="ident">add</span>(<span class="number">2</span>);

<span class="comment">// ... and then turn it into an Iterator:</span>
<span class="kw">for</span> (<span class="ident">i</span>, <span class="ident">n</span>) <span class="kw">in</span> <span class="ident">c</span>.<span class="ident">into_iter</span>().<span class="ident">enumerate</span>() {
    <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">i</span> <span class="kw">as</span> <span class="ident">i32</span>, <span class="ident">n</span>);
}<a class="test-arrow" target="_blank" href="https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn%20main()%20%7B%0A%2F%2F%20A%20sample%20collection%2C%20that's%20just%20a%20wrapper%20over%20Vec%3CT%3E%0A%23%5Bderive(Debug)%5D%0Astruct%20MyCollection(Vec%3Ci32%3E)%3B%0A%0A%2F%2F%20Let's%20give%20it%20some%20methods%20so%20we%20can%20create%20one%20and%20add%20things%0A%2F%2F%20to%20it.%0Aimpl%20MyCollection%20%7B%0A%20%20%20%20fn%20new()%20-%3E%20MyCollection%20%7B%0A%20%20%20%20%20%20%20%20MyCollection(Vec%3A%3Anew())%0A%20%20%20%20%7D%0A%0A%20%20%20%20fn%20add(%26mut%20self%2C%20elem%3A%20i32)%20%7B%0A%20%20%20%20%20%20%20%20self.0.push(elem)%3B%0A%20%20%20%20%7D%0A%7D%0A%0A%2F%2F%20and%20we'll%20implement%20IntoIterator%0Aimpl%20IntoIterator%20for%20MyCollection%20%7B%0A%20%20%20%20type%20Item%20%3D%20i32%3B%0A%20%20%20%20type%20IntoIter%20%3D%20%3A%3Astd%3A%3Avec%3A%3AIntoIter%3Ci32%3E%3B%0A%0A%20%20%20%20fn%20into_iter(self)%20-%3E%20Self%3A%3AIntoIter%20%7B%0A%20%20%20%20%20%20%20%20self.0.into_iter()%0A%20%20%20%20%7D%0A%7D%0A%0A%2F%2F%20Now%20we%20can%20make%20a%20new%20collection...%0Alet%20mut%20c%20%3D%20MyCollection%3A%3Anew()%3B%0A%0A%2F%2F%20...%20add%20some%20stuff%20to%20it%20...%0Ac.add(0)%3B%0Ac.add(1)%3B%0Ac.add(2)%3B%0A%0A%2F%2F%20...%20and%20then%20turn%20it%20into%20an%20Iterator%3A%0Afor%20(i%2C%20n)%20in%20c.into_iter().enumerate()%20%7B%0A%20%20%20%20assert_eq!(i%20as%20i32%2C%20n)%3B%0A%7D%0A%7D">Run</a></pre>
<p>It is common to use <code>IntoIterator</code> as a trait bound. This allows
the input collection type to change, so long as it is still an
iterator. Additional bounds can be specified by restricting on
<code>Item</code>:</p>

<pre class="rust rust-example-rendered">
<span class="kw">fn</span> <span class="ident">collect_as_strings</span><span class="op">&lt;</span><span class="ident">T</span><span class="op">&gt;</span>(<span class="ident">collection</span>: <span class="ident">T</span>) <span class="op">-&gt;</span> <span class="ident">Vec</span><span class="op">&lt;</span><span class="ident">String</span><span class="op">&gt;</span>
    <span class="kw">where</span> <span class="ident">T</span>: <span class="ident">IntoIterator</span>,
          <span class="ident">T</span>::<span class="ident">Item</span> : <span class="ident">std</span>::<span class="ident">fmt</span>::<span class="ident">Debug</span>,
{
    <span class="ident">collection</span>
        .<span class="ident">into_iter</span>()
        .<span class="ident">map</span>(<span class="op">|</span><span class="ident">item</span><span class="op">|</span> <span class="macro">format</span><span class="macro">!</span>(<span class="string">&quot;{:?}&quot;</span>, <span class="ident">item</span>))
        .<span class="ident">collect</span>()
}<a class="test-arrow" target="_blank" href="https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn%20main()%20%7B%0Afn%20collect_as_strings%3CT%3E(collection%3A%20T)%20-%3E%20Vec%3CString%3E%0A%20%20%20%20where%20T%3A%20IntoIterator%2C%0A%20%20%20%20%20%20%20%20%20%20T%3A%3AItem%20%3A%20std%3A%3Afmt%3A%3ADebug%2C%0A%7B%0A%20%20%20%20collection%0A%20%20%20%20%20%20%20%20.into_iter()%0A%20%20%20%20%20%20%20%20.map(%7Citem%7C%20format!(%22%7B%3A%3F%7D%22%2C%20item))%0A%20%20%20%20%20%20%20%20.collect()%0A%7D%0A%7D">Run</a></pre>
</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.Item' class='method'><span id='Item.t' class='invisible'><code>type <a href='#associatedtype.Item' class="type">Item</a></code></span></h3><div class='docblock'><p>The type of the elements being iterated over.</p>
</div><h3 id='associatedtype.IntoIter' class='method'><span id='IntoIter.t' class='invisible'><code>type <a href='#associatedtype.IntoIter' class="type">IntoIter</a>: <a class="trait" href="../../std/iter/trait.Iterator.html" title="trait std::iter::Iterator">Iterator</a></code></span></h3><div class='docblock'><p>Which kind of iterator are we turning this into?</p>
</div></div>
            <h2 id='required-methods' class='small-section-header'>
              Required Methods<a href='#required-methods' class='anchor'></a>
            </h2>
            <div class='methods'>
        <h3 id='tymethod.into_iter' class='method'><span id='into_iter.v' class='invisible'><code>fn <a href='#tymethod.into_iter' class='fnname'>into_iter</a>(self) -&gt; Self::<a class="type" href="../../std/iter/trait.IntoIterator.html#associatedtype.IntoIter" title="type std::iter::IntoIterator::IntoIter">IntoIter</a></code></span></h3><div class='docblock'><p>Creates an iterator from a value.</p>
<p>See the <a href="index.html">module-level documentation</a> for more.</p>
<h1 id="examples-1" class="section-header"><a href="#examples-1">Examples</a></h1>
<p>Basic usage:</p>

<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">v</span> <span class="op">=</span> <span class="macro">vec</span><span class="macro">!</span>[<span class="number">1</span>, <span class="number">2</span>, <span class="number">3</span>];
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">iter</span> <span class="op">=</span> <span class="ident">v</span>.<span class="ident">into_iter</span>();

<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="prelude-val">Some</span>(<span class="number">1</span>), <span class="ident">iter</span>.<span class="ident">next</span>());
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="prelude-val">Some</span>(<span class="number">2</span>), <span class="ident">iter</span>.<span class="ident">next</span>());
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="prelude-val">Some</span>(<span class="number">3</span>), <span class="ident">iter</span>.<span class="ident">next</span>());
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="prelude-val">None</span>, <span class="ident">iter</span>.<span class="ident">next</span>());<a class="test-arrow" target="_blank" href="https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn%20main()%20%7B%0Alet%20v%20%3D%20vec!%5B1%2C%202%2C%203%5D%3B%0Alet%20mut%20iter%20%3D%20v.into_iter()%3B%0A%0Aassert_eq!(Some(1)%2C%20iter.next())%3B%0Aassert_eq!(Some(2)%2C%20iter.next())%3B%0Aassert_eq!(Some(3)%2C%20iter.next())%3B%0Aassert_eq!(None%2C%20iter.next())%3B%0A%7D">Run</a></pre>
</div></div>
        <h2 id='implementors' class='small-section-header'>
          Implementors<a href='#implementors' class='anchor'></a>
        </h2>
        <ul class='item-list' id='implementors-list'>
    <li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 23]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T, E&gt; IntoIterator for &amp;'a <a class="enum" href="../../std/result/enum.Result.html" title="enum std::result::Result">Result</a>&lt;T, E&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/result/struct.Iter.html" title="struct std::result::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/result.rs.html#983-990' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 4]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 16]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 2]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 27]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for <a class="primitive" href="../primitive.slice.html">&amp;'a mut [T]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/slice/mod.rs.html#2620-2627' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 3]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 12]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 6]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 21]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 18]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 15]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 10]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 26]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 4]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T&gt; IntoIterator for <a class="enum" href="../../std/option/enum.Option.html" title="enum std::option::Option">Option</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/option/struct.IntoIter.html" title="struct std::option::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/option.rs.html#932-953' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 8]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 9]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 20]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 29]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 20]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 13]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 25]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="enum" href="../../std/option/enum.Option.html" title="enum std::option::Option">Option</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/option/struct.IterMut.html" title="struct std::option::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/option.rs.html#966-973' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T, E&gt; IntoIterator for &amp;'a mut <a class="enum" href="../../std/result/enum.Result.html" title="enum std::result::Result">Result</a>&lt;T, E&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/result/struct.IterMut.html" title="struct std::result::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/result.rs.html#993-1000' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 0]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 27]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for <a class="primitive" href="../primitive.slice.html">&amp;'a [T]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/slice/mod.rs.html#2610-2617' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 0]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; IntoIterator for I <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../../std/iter/trait.Iterator.html" title="trait std::iter::Iterator">Iterator</a>,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = &lt;I as <a class="trait" href="../../std/iter/trait.Iterator.html" title="trait std::iter::Iterator">Iterator</a>&gt;::<a class="type" href="../../std/iter/trait.Iterator.html#associatedtype.Item" title="type std::iter::Iterator::Item">Item</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = I;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/iter/traits.rs.html#252-259' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 17]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 13]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 30]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 24]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 14]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 17]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 2]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 24]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 19]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 32]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 7]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 21]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 31]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 18]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 16]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T, E&gt; IntoIterator for <a class="enum" href="../../std/result/enum.Result.html" title="enum std::result::Result">Result</a>&lt;T, E&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/result/struct.IntoIter.html" title="struct std::result::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/result.rs.html#953-980' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 15]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 22]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 28]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 26]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 6]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 25]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 3]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 31]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 7]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 11]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 22]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 19]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 11]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="enum" href="../../std/option/enum.Option.html" title="enum std::option::Option">Option</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/option/struct.Iter.html" title="struct std::option::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/option.rs.html#956-963' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 10]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 9]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 14]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 5]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 5]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 28]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 12]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 8]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 23]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 1]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 29]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 1]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#204-211' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 32]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="primitive" href="../primitive.array.html">[</a>T<a class="primitive" href="../primitive.array.html">; 30]</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/core/array.rs.html#194-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/vec/struct.Vec.html" title="struct std::vec::Vec">Vec</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.Iter.html" title="struct std::slice::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/vec.rs.html#1798-1805' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="struct" href="../../std/vec/struct.Vec.html" title="struct std::vec::Vec">Vec</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/slice/struct.IterMut.html" title="struct std::slice::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/vec.rs.html#1808-1815' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/collections/linked_list/struct.LinkedList.html" title="struct std::collections::linked_list::LinkedList">LinkedList</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/linked_list/struct.Iter.html" title="struct std::collections::linked_list::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/linked_list.rs.html#1088-1095' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, K, V&gt; IntoIterator for &amp;'a mut <a class="struct" href="../../std/collections/btree_map/struct.BTreeMap.html" title="struct std::collections::btree_map::BTreeMap">BTreeMap</a>&lt;K, V&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;K: 'a,<br>&nbsp;&nbsp;&nbsp;&nbsp;V: 'a,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.tuple.html">(</a><a class="primitive" href="../primitive.reference.html">&amp;'a </a>K, <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>V<a class="primitive" href="../primitive.tuple.html">)</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/btree_map/struct.IterMut.html" title="struct std::collections::btree_map::IterMut">IterMut</a>&lt;'a, K, V&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/btree/map.rs.html#1219-1226' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/collections/binary_heap/struct.BinaryHeap.html" title="struct std::collections::binary_heap::BinaryHeap">BinaryHeap</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../std/cmp/trait.Ord.html" title="trait std::cmp::Ord">Ord</a>,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/binary_heap/struct.Iter.html" title="struct std::collections::binary_heap::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/binary_heap.rs.html#1147-1156' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;K, V&gt; IntoIterator for <a class="struct" href="../../std/collections/btree_map/struct.BTreeMap.html" title="struct std::collections::btree_map::BTreeMap">BTreeMap</a>&lt;K, V&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.tuple.html">(</a>K, V<a class="primitive" href="../primitive.tuple.html">)</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/btree_map/struct.IntoIter.html" title="struct std::collections::btree_map::IntoIter">IntoIter</a>&lt;K, V&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/btree/map.rs.html#1269-1285' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T&gt; IntoIterator for <a class="struct" href="../../std/collections/linked_list/struct.LinkedList.html" title="struct std::collections::linked_list::LinkedList">LinkedList</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/linked_list/struct.IntoIter.html" title="struct std::collections::linked_list::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/linked_list.rs.html#1076-1085' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, K, V&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/collections/btree_map/struct.BTreeMap.html" title="struct std::collections::btree_map::BTreeMap">BTreeMap</a>&lt;K, V&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;K: 'a,<br>&nbsp;&nbsp;&nbsp;&nbsp;V: 'a,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.tuple.html">(</a><a class="primitive" href="../primitive.reference.html">&amp;'a </a>K, <a class="primitive" href="../primitive.reference.html">&amp;'a </a>V<a class="primitive" href="../primitive.tuple.html">)</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/btree_map/struct.Iter.html" title="struct std::collections::btree_map::Iter">Iter</a>&lt;'a, K, V&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/btree/map.rs.html#1159-1166' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T&gt; IntoIterator for <a class="struct" href="../../std/collections/btree_set/struct.BTreeSet.html" title="struct std::collections::btree_set::BTreeSet">BTreeSet</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/btree_set/struct.IntoIter.html" title="struct std::collections::btree_set::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/btree/set.rs.html#765-784' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="struct" href="../../std/collections/linked_list/struct.LinkedList.html" title="struct std::collections::linked_list::LinkedList">LinkedList</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/linked_list/struct.IterMut.html" title="struct std::collections::linked_list::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/linked_list.rs.html#1098-1105' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/collections/vec_deque/struct.VecDeque.html" title="struct std::collections::vec_deque::VecDeque">VecDeque</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/vec_deque/struct.Iter.html" title="struct std::collections::vec_deque::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/vec_deque.rs.html#2475-2482' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T&gt; IntoIterator for <a class="struct" href="../../std/collections/binary_heap/struct.BinaryHeap.html" title="struct std::collections::binary_heap::BinaryHeap">BinaryHeap</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../std/cmp/trait.Ord.html" title="trait std::cmp::Ord">Ord</a>,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/binary_heap/struct.IntoIter.html" title="struct std::collections::binary_heap::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/binary_heap.rs.html#1119-1144' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/collections/btree_set/struct.BTreeSet.html" title="struct std::collections::btree_set::BTreeSet">BTreeSet</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/btree_set/struct.Iter.html" title="struct std::collections::btree_set::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/btree/set.rs.html#787-794' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T&gt; IntoIterator for <a class="struct" href="../../std/vec/struct.Vec.html" title="struct std::vec::Vec">Vec</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/vec/struct.IntoIter.html" title="struct std::vec::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/vec.rs.html#1757-1795' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T&gt; IntoIterator for <a class="struct" href="../../std/collections/vec_deque/struct.VecDeque.html" title="struct std::collections::vec_deque::VecDeque">VecDeque</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/vec_deque/struct.IntoIter.html" title="struct std::collections::vec_deque::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/vec_deque.rs.html#2463-2472' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a mut <a class="struct" href="../../std/collections/vec_deque/struct.VecDeque.html" title="struct std::collections::vec_deque::VecDeque">VecDeque</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/vec_deque/struct.IterMut.html" title="struct std::collections::vec_deque::IterMut">IterMut</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/alloc/vec_deque.rs.html#2485-2492' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, K, V, S&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/collections/struct.HashMap.html" title="struct std::collections::HashMap">HashMap</a>&lt;K, V, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;K: <a class="trait" href="../../std/cmp/trait.Eq.html" title="trait std::cmp::Eq">Eq</a> + <a class="trait" href="../../std/hash/trait.Hash.html" title="trait std::hash::Hash">Hash</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../../std/hash/trait.BuildHasher.html" title="trait std::hash::BuildHasher">BuildHasher</a>,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.tuple.html">(</a><a class="primitive" href="../primitive.reference.html">&amp;'a </a>K, <a class="primitive" href="../primitive.reference.html">&amp;'a </a>V<a class="primitive" href="../primitive.tuple.html">)</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/hash_map/struct.Iter.html" title="struct std::collections::hash_map::Iter">Iter</a>&lt;'a, K, V&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/collections/hash/map.rs.html#1781-1791' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, K, V, S&gt; IntoIterator for &amp;'a mut <a class="struct" href="../../std/collections/struct.HashMap.html" title="struct std::collections::HashMap">HashMap</a>&lt;K, V, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;K: <a class="trait" href="../../std/cmp/trait.Eq.html" title="trait std::cmp::Eq">Eq</a> + <a class="trait" href="../../std/hash/trait.Hash.html" title="trait std::hash::Hash">Hash</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../../std/hash/trait.BuildHasher.html" title="trait std::hash::BuildHasher">BuildHasher</a>,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.tuple.html">(</a><a class="primitive" href="../primitive.reference.html">&amp;'a </a>K, <a class="primitive" href="../primitive.reference.html">&amp;'a mut </a>V<a class="primitive" href="../primitive.tuple.html">)</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/hash_map/struct.IterMut.html" title="struct std::collections::hash_map::IterMut">IterMut</a>&lt;'a, K, V&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/collections/hash/map.rs.html#1794-1804' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;K, V, S&gt; IntoIterator for <a class="struct" href="../../std/collections/struct.HashMap.html" title="struct std::collections::HashMap">HashMap</a>&lt;K, V, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;K: <a class="trait" href="../../std/cmp/trait.Eq.html" title="trait std::cmp::Eq">Eq</a> + <a class="trait" href="../../std/hash/trait.Hash.html" title="trait std::hash::Hash">Hash</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../../std/hash/trait.BuildHasher.html" title="trait std::hash::BuildHasher">BuildHasher</a>,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.tuple.html">(</a>K, V<a class="primitive" href="../primitive.tuple.html">)</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/hash_map/struct.IntoIter.html" title="struct std::collections::hash_map::IntoIter">IntoIter</a>&lt;K, V&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/collections/hash/map.rs.html#1807-1834' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T, S&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/collections/struct.HashSet.html" title="struct std::collections::HashSet">HashSet</a>&lt;T, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../std/cmp/trait.Eq.html" title="trait std::cmp::Eq">Eq</a> + <a class="trait" href="../../std/hash/trait.Hash.html" title="trait std::hash::Hash">Hash</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../../std/hash/trait.BuildHasher.html" title="trait std::hash::BuildHasher">BuildHasher</a>,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="../primitive.reference.html">&amp;'a </a>T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/hash_set/struct.Iter.html" title="struct std::collections::hash_set::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/collections/hash/set.rs.html#1060-1070' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T, S&gt; IntoIterator for <a class="struct" href="../../std/collections/struct.HashSet.html" title="struct std::collections::HashSet">HashSet</a>&lt;T, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../std/cmp/trait.Eq.html" title="trait std::cmp::Eq">Eq</a> + <a class="trait" href="../../std/hash/trait.Hash.html" title="trait std::hash::Hash">Hash</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../../std/hash/trait.BuildHasher.html" title="trait std::hash::BuildHasher">BuildHasher</a>,&nbsp;</span><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/collections/hash_set/struct.IntoIter.html" title="struct std::collections::hash_set::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/collections/hash/set.rs.html#1073-1103' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/path/struct.PathBuf.html" title="struct std::path::PathBuf">PathBuf</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = &amp;'a <a class="struct" href="../../std/ffi/struct.OsStr.html" title="struct std::ffi::OsStr">OsStr</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/path/struct.Iter.html" title="struct std::path::Iter">Iter</a>&lt;'a&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/path.rs.html#2587-2591' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/path/struct.Path.html" title="struct std::path::Path">Path</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = &amp;'a <a class="struct" href="../../std/ffi/struct.OsStr.html" title="struct std::ffi::OsStr">OsStr</a>;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/path/struct.Iter.html" title="struct std::path::Iter">Iter</a>&lt;'a&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/path.rs.html#2594-2598' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, T&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/sync/mpsc/struct.Receiver.html" title="struct std::sync::mpsc::Receiver">Receiver</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/sync/mpsc/struct.Iter.html" title="struct std::sync::mpsc::Iter">Iter</a>&lt;'a, T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/sync/mpsc/mod.rs.html#1579-1584' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T&gt; IntoIterator for <a class="struct" href="../../std/sync/mpsc/struct.Receiver.html" title="struct std::sync::mpsc::Receiver">Receiver</a>&lt;T&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = T;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/sync/mpsc/struct.IntoIter.html" title="struct std::sync::mpsc::IntoIter">IntoIter</a>&lt;T&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/sync/mpsc/mod.rs.html#1593-1600' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a&gt; IntoIterator for &amp;'a <a class="struct" href="../../std/os/unix/net/struct.UnixListener.html" title="struct std::os::unix::net::UnixListener">UnixListener</a><span class="where fmt-newline">  type <a href='#associatedtype.Item' class="type">Item</a> = <a class="type" href="../../std/io/type.Result.html" title="type std::io::Result">Result</a>&lt;<a class="struct" href="../../std/os/unix/net/struct.UnixStream.html" title="struct std::os::unix::net::UnixStream">UnixStream</a>&gt;;</span><span class="where fmt-newline">  type <a href='#associatedtype.IntoIter' class="type">IntoIter</a> = <a class="struct" href="../../std/os/unix/net/struct.Incoming.html" title="struct std::os::unix::net::Incoming">Incoming</a>&lt;'a&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../../src/std/sys/unix/ext/net.rs.html#913-920' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
</ul><script type="text/javascript">window.inlined_types=new Set([]);</script><script type="text/javascript" async
                         src="../../implementors/core/iter/traits/trait.IntoIterator.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 = "std";</script><script src="../../aliases.js"></script><script src="../../main.js"></script><script defer src="../../search-index.js"></script></body></html>