Files
mercator_service/nom/lib/std/iter/trait.TrustedLen.html

14 lines
42 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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 `TrustedLen` trait in crate `nom`."><meta name="keywords" content="rust, rustlang, rust-lang, TrustedLen"><title>nom::lib::std::iter::TrustedLen - 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><noscript><link rel="stylesheet" href="../../../../noscript.css"></noscript><link rel="shortcut icon" href="../../../../favicon.ico"><style type="text/css">#crate-search{background-image:url("../../../../down-arrow.svg");}</style></head><body class="rustdoc trait"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">&#9776;</div><a href='../../../../nom/index.html'><div class='logo-container'><img src='../../../../rust-logo.png' alt='logo'></div></a><p class='location'>Trait TrustedLen</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#foreign-impls">Implementations on Foreign Types</a><div class="sidebar-links"><a href="#impl-TrustedLen-for-%26%27_%20mut%20I">&amp;&#39;_ mut I</a><a href="#impl-TrustedLen-for-IntoIter%3CT%2C%20N%3E">IntoIter&lt;T, N&gt;</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='../../../index.html'>nom</a>::<wbr><a href='../../index.html'>lib</a>::<wbr><a href='../index.html'>std</a>::<wbr><a href='index.html'>iter</a></p><script>window.sidebarCurrent = {name: 'TrustedLen', 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"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" disabled autocomplete="off" spellcheck="false" placeholder="Click or press S to search, ? for more options…" type="search"></div><a id="settings-menu" href="../../../../settings.html"><img src="../../../../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span class='since' title='Stable since Rust version '></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='https://doc.rust-lang.org/nightly/src/core/iter/traits/marker.rs.html#41' title='goto source code'>[src]</a></span><span class='in-band'>Trait <a href='../../../index.html'>nom</a>::<wbr><a href='../../index.html'>lib</a>::<wbr><a href='../index.html'>std</a>::<wbr><a href='index.html'>iter</a>::<wbr><a class="trait" href=''>TrustedLen</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust trait'>pub unsafe trait TrustedLen: <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Iterator.html" title="trait nom::lib::std::prelude::v1::v1::Iterator">Iterator</a> { }</pre></div><div class='stability'><div class='stab unstable'><span class='emoji'>🔬</span> This is a nightly-only experimental API. (<code>trusted_len</code>)</div></div><div class='docblock'><p>An iterator that reports an accurate length using size_hint.</p>
<p>The iterator reports a size hint where it is either exact
(lower bound is equal to upper bound), or the upper bound is <a href="../../std/option/enum.Option.html#variant.None"><code>None</code></a>.
The upper bound must only be <a href="../../std/option/enum.Option.html#variant.None"><code>None</code></a> if the actual iterator length is
larger than <a href="../../std/usize/constant.MAX.html"><code>usize::MAX</code></a>. In that case, the lower bound must be
<a href="../../std/usize/constant.MAX.html"><code>usize::MAX</code></a>, resulting in a <a href="../../std/iter/trait.Iterator.html#method.size_hint"><code>.size_hint</code></a> of <code>(usize::MAX, None)</code>.</p>
<p>The iterator must produce exactly the number of elements it reported
or diverge before reaching the end.</p>
<h1 id="safety" class="section-header"><a href="#safety">Safety</a></h1>
<p>This trait must only be implemented when the contract is upheld.
Consumers of this trait must inspect <a href="../../std/iter/trait.Iterator.html#method.size_hint"><code>.size_hint</code></a>s upper bound.</p>
</div>
<h2 id='foreign-impls' class='small-section-header'>Implementations on Foreign Types<a href='#foreign-impls' class='anchor'></a></h2><h3 id='impl-TrustedLen-for-IntoIter%3CT%2C%20N%3E' class='impl'><code class='in-band'>impl&lt;const N:&nbsp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, T&gt; <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a> for <a class="struct" href="https://doc.rust-lang.org/nightly/core/array/iter/struct.IntoIter.html" title="struct core::array::iter::IntoIter">IntoIter</a>&lt;T, N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>T<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; N]</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/array/trait.LengthAtMost32.html" title="trait core::array::LengthAtMost32">LengthAtMost32</a>,&nbsp;</span></code><a href='#impl-TrustedLen-for-IntoIter%3CT%2C%20N%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/array/iter.rs.html#220' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-for-%26%27_%20mut%20I' class='impl'><code class='in-band'>impl&lt;'_, I&gt; <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'_ mut </a>I <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a> + ?<a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Sized.html" title="trait nom::lib::std::prelude::v1::v1::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-TrustedLen-for-%26%27_%20mut%20I' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/traits/marker.rs.html#44' title='goto source code'>[src]</a></h3><div class='impl-items'></div><span class='loading-content'>Loading content...</span>
<h2 id='implementors' class='small-section-header'>Implementors<a href='#implementors' class='anchor'></a></h2><div class='item-list' id='implementors-list'><h3 id='impl-TrustedLen' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>&gt;</code><a href='#impl-TrustedLen' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-1' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>&gt;</code><a href='#impl-TrustedLen-1' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-2' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>&gt;</code><a href='#impl-TrustedLen-2' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-3' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>&gt;</code><a href='#impl-TrustedLen-3' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-4' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>&gt;</code><a href='#impl-TrustedLen-4' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-5' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>&gt;</code><a href='#impl-TrustedLen-5' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-6' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>&gt;</code><a href='#impl-TrustedLen-6' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-7' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt;</code><a href='#impl-TrustedLen-7' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-8' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt;</code><a href='#impl-TrustedLen-8' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-9' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt;</code><a href='#impl-TrustedLen-9' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-10' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</code><a href='#impl-TrustedLen-10' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-11' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.Range.html" title="struct nom::lib::std::ops::Range">Range</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;</code><a href='#impl-TrustedLen-11' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#195' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-12' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>&gt;</code><a href='#impl-TrustedLen-12' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-13' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>&gt;</code><a href='#impl-TrustedLen-13' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-14' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>&gt;</code><a href='#impl-TrustedLen-14' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-15' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>&gt;</code><a href='#impl-TrustedLen-15' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-16' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>&gt;</code><a href='#impl-TrustedLen-16' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-17' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>&gt;</code><a href='#impl-TrustedLen-17' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-18' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>&gt;</code><a href='#impl-TrustedLen-18' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-19' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt;</code><a href='#impl-TrustedLen-19' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-20' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt;</code><a href='#impl-TrustedLen-20' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-21' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt;</code><a href='#impl-TrustedLen-21' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-22' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</code><a href='#impl-TrustedLen-22' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-23' class='impl'><code class='in-band'>impl TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeInclusive.html" title="struct nom::lib::std::ops::RangeInclusive">RangeInclusive</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;</code><a href='#impl-TrustedLen-23' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#202' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-24' class='impl'><code class='in-band'>impl&lt;'_&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/str/struct.Bytes.html" title="struct nom::lib::std::str::Bytes">Bytes</a>&lt;'_&gt;</code><a href='#impl-TrustedLen-24' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/str/mod.rs.html#865' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-25' class='impl'><code class='in-band'>impl&lt;'_, A&gt; TrustedLen for nom::lib::std::option::<a class="struct" href="../../../../nom/lib/std/option/struct.Iter.html" title="struct nom::lib::std::option::Iter">Iter</a>&lt;'_, A&gt;</code><a href='#impl-TrustedLen-25' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/option.rs.html#1399' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-26' class='impl'><code class='in-band'>impl&lt;'_, A&gt; TrustedLen for nom::lib::std::option::<a class="struct" href="../../../../nom/lib/std/option/struct.IterMut.html" title="struct nom::lib::std::option::IterMut">IterMut</a>&lt;'_, A&gt;</code><a href='#impl-TrustedLen-26' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/option.rs.html#1452' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-27' class='impl'><code class='in-band'>impl&lt;'_, A&gt; TrustedLen for nom::lib::std::result::<a class="struct" href="../../../../nom/lib/std/result/struct.Iter.html" title="struct nom::lib::std::result::Iter">Iter</a>&lt;'_, A&gt;</code><a href='#impl-TrustedLen-27' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/result.rs.html#1346' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-28' class='impl'><code class='in-band'>impl&lt;'_, A&gt; TrustedLen for nom::lib::std::result::<a class="struct" href="../../../../nom/lib/std/result/struct.IterMut.html" title="struct nom::lib::std::result::IterMut">IterMut</a>&lt;'_, A&gt;</code><a href='#impl-TrustedLen-28' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/result.rs.html#1399' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-29' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/collections/binary_heap/struct.DrainSorted.html" title="struct nom::lib::std::collections::binary_heap::DrainSorted">DrainSorted</a>&lt;'_, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Ord.html" title="trait nom::lib::std::prelude::v1::v1::Ord">Ord</a>,&nbsp;</span></code><a href='#impl-TrustedLen-29' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/collections/binary_heap.rs.html#1281' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-30' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.Chunks.html" title="struct nom::lib::std::slice::Chunks">Chunks</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-30' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#4604' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-31' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.ChunksExact.html" title="struct nom::lib::std::slice::ChunksExact">ChunksExact</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-31' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#4886' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-32' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.ChunksExactMut.html" title="struct nom::lib::std::slice::ChunksExactMut">ChunksExactMut</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-32' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#5020' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-33' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.ChunksMut.html" title="struct nom::lib::std::slice::ChunksMut">ChunksMut</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-33' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#4746' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-34' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for nom::lib::std::slice::<a class="struct" href="../../../../nom/lib/std/slice/struct.Iter.html" title="struct nom::lib::std::slice::Iter">Iter</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-34' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#3396' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-35' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for nom::lib::std::slice::<a class="struct" href="../../../../nom/lib/std/slice/struct.IterMut.html" title="struct nom::lib::std::slice::IterMut">IterMut</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-35' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#3396' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-36' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.RChunks.html" title="struct nom::lib::std::slice::RChunks">RChunks</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-36' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#5163' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-37' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.RChunksExact.html" title="struct nom::lib::std::slice::RChunksExact">RChunksExact</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-37' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#5452' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-38' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.RChunksExactMut.html" title="struct nom::lib::std::slice::RChunksExactMut">RChunksExactMut</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-38' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#5591' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-39' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.RChunksMut.html" title="struct nom::lib::std::slice::RChunksMut">RChunksMut</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-39' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#5308' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-40' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/slice/struct.Windows.html" title="struct nom::lib::std::slice::Windows">Windows</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-40' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/slice/mod.rs.html#4465' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-41' class='impl'><code class='in-band'>impl&lt;'_, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/vec/struct.Drain.html" title="struct nom::lib::std::vec::Drain">Drain</a>&lt;'_, T&gt;</code><a href='#impl-TrustedLen-41' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/vec.rs.html#2759' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-42' class='impl'><code class='in-band'>impl&lt;'a, I, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Cloned.html" title="struct nom::lib::std::iter::Cloned">Cloned</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'a + <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Clone.html" title="trait nom::lib::std::prelude::v1::v1::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-TrustedLen-42' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/adapters/mod.rs.html#418-423' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-43' class='impl'><code class='in-band'>impl&lt;'a, I, T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Copied.html" title="struct nom::lib::std::iter::Copied">Copied</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'a + <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Copy.html" title="trait nom::lib::std::prelude::v1::v1::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-TrustedLen-43' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/adapters/mod.rs.html#272-277' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-44' class='impl'><code class='in-band'>impl&lt;A&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Repeat.html" title="struct nom::lib::std::iter::Repeat">Repeat</a>&lt;A&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Clone.html" title="trait nom::lib::std::prelude::v1::v1::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-TrustedLen-44' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/sources.rs.html#44' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-45' class='impl'><code class='in-band'>impl&lt;A&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/ops/struct.RangeFrom.html" title="struct nom::lib::std::ops::RangeFrom">RangeFrom</a>&lt;A&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../../../../nom/lib/std/iter/trait.Step.html" title="trait nom::lib::std::iter::Step">Step</a>,&nbsp;</span></code><a href='#impl-TrustedLen-45' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/range.rs.html#336' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-46' class='impl'><code class='in-band'>impl&lt;A&gt; TrustedLen for nom::lib::std::option::<a class="struct" href="../../../../nom/lib/std/option/struct.IntoIter.html" title="struct nom::lib::std::option::IntoIter">IntoIter</a>&lt;A&gt;</code><a href='#impl-TrustedLen-46' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/option.rs.html#1498' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-47' class='impl'><code class='in-band'>impl&lt;A&gt; TrustedLen for nom::lib::std::result::<a class="struct" href="../../../../nom/lib/std/result/struct.IntoIter.html" title="struct nom::lib::std::result::IntoIter">IntoIter</a>&lt;A&gt;</code><a href='#impl-TrustedLen-47' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/result.rs.html#1448' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-48' class='impl'><code class='in-band'>impl&lt;A, B&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Chain.html" title="struct nom::lib::std::iter::Chain">Chain</a>&lt;A, B&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>&lt;Item = &lt;A as <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Iterator.html" title="trait nom::lib::std::prelude::v1::v1::Iterator">Iterator</a>&gt;::<a class="type" href="../../../../nom/lib/std/prelude/v1/v1/trait.Iterator.html#associatedtype.Item" title="type nom::lib::std::prelude::v1::v1::Iterator::Item">Item</a>&gt;,&nbsp;</span></code><a href='#impl-TrustedLen-48' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/adapters/chain.rs.html#291-296' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-49' class='impl'><code class='in-band'>impl&lt;A, B&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Zip.html" title="struct nom::lib::std::iter::Zip">Zip</a>&lt;A, B&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>,&nbsp;</span></code><a href='#impl-TrustedLen-49' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/adapters/zip.rs.html#285-290' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-50' class='impl'><code class='in-band'>impl&lt;A, F&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.OnceWith.html" title="struct nom::lib::std::iter::OnceWith">OnceWith</a>&lt;F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.FnOnce.html" title="trait nom::lib::std::prelude::v1::v1::FnOnce">FnOnce</a>() -&gt; A,&nbsp;</span></code><a href='#impl-TrustedLen-50' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/sources.rs.html#441' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-51' class='impl'><code class='in-band'>impl&lt;A, F&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.RepeatWith.html" title="struct nom::lib::std::iter::RepeatWith">RepeatWith</a>&lt;F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.FnMut.html" title="trait nom::lib::std::prelude::v1::v1::FnMut">FnMut</a>() -&gt; A,&nbsp;</span></code><a href='#impl-TrustedLen-51' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/sources.rs.html#135' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-52' class='impl'><code class='in-band'>impl&lt;B, I, F&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Map.html" title="struct nom::lib::std::iter::Map">Map</a>&lt;I, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.FnMut.html" title="trait nom::lib::std::prelude::v1::v1::FnMut">FnMut</a>(&lt;I as <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Iterator.html" title="trait nom::lib::std::prelude::v1::v1::Iterator">Iterator</a>&gt;::<a class="type" href="../../../../nom/lib/std/prelude/v1/v1/trait.Iterator.html#associatedtype.Item" title="type nom::lib::std::prelude::v1::v1::Iterator::Item">Item</a>) -&gt; B,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>,&nbsp;</span></code><a href='#impl-TrustedLen-52' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/adapters/mod.rs.html#861-866' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-53' class='impl'><code class='in-band'>impl&lt;I&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Enumerate.html" title="struct nom::lib::std::iter::Enumerate">Enumerate</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>,&nbsp;</span></code><a href='#impl-TrustedLen-53' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/adapters/mod.rs.html#1349' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-54' class='impl'><code class='in-band'>impl&lt;I&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Rev.html" title="struct nom::lib::std::iter::Rev">Rev</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a> + <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.DoubleEndedIterator.html" title="trait nom::lib::std::prelude::v1::v1::DoubleEndedIterator">DoubleEndedIterator</a>,&nbsp;</span></code><a href='#impl-TrustedLen-54' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/adapters/mod.rs.html#142' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-55' class='impl'><code class='in-band'>impl&lt;I&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Take.html" title="struct nom::lib::std::iter::Take">Take</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../../../../nom/lib/std/iter/trait.TrustedLen.html" title="trait nom::lib::std::iter::TrustedLen">TrustedLen</a>,&nbsp;</span></code><a href='#impl-TrustedLen-55' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/adapters/mod.rs.html#2177' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-56' class='impl'><code class='in-band'>impl&lt;T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/collections/binary_heap/struct.IntoIterSorted.html" title="struct nom::lib::std::collections::binary_heap::IntoIterSorted">IntoIterSorted</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../../../../nom/lib/std/prelude/v1/v1/trait.Ord.html" title="trait nom::lib::std::prelude::v1::v1::Ord">Ord</a>,&nbsp;</span></code><a href='#impl-TrustedLen-56' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/collections/binary_heap.rs.html#1177' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-57' class='impl'><code class='in-band'>impl&lt;T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Empty.html" title="struct nom::lib::std::iter::Empty">Empty</a>&lt;T&gt;</code><a href='#impl-TrustedLen-57' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/sources.rs.html#251' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-58' class='impl'><code class='in-band'>impl&lt;T&gt; TrustedLen for <a class="struct" href="../../../../nom/lib/std/iter/struct.Once.html" title="struct nom::lib::std::iter::Once">Once</a>&lt;T&gt;</code><a href='#impl-TrustedLen-58' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/iter/sources.rs.html#333' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-TrustedLen-59' class='impl'><code class='in-band'>impl&lt;T&gt; TrustedLen for nom::lib::std::vec::<a class="struct" href="../../../../nom/lib/std/vec/struct.IntoIter.html" title="struct nom::lib::std::vec::IntoIter">IntoIter</a>&lt;T&gt;</code><a href='#impl-TrustedLen-59' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/vec.rs.html#2617' title='goto source code'>[src]</a></h3><div class='impl-items'></div></div><span class='loading-content'>Loading content...</span><script type="text/javascript" src="../../../../implementors/core/iter/traits/marker/trait.TrustedLen.js" async></script></section><section id="search" class="content hidden"></section><section class="footer"></section><script>window.rootPath = "../../../../";window.currentCrate = "nom";</script><script src="../../../../aliases.js"></script><script src="../../../../main.js"></script><script defer src="../../../../search-index.js"></script></body></html>