Sophie

Sophie

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

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

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `Not` trait in crate `std`."><meta name="keywords" content="rust, rustlang, rust-lang, Not"><title>std::ops::Not - Rust</title><link rel="stylesheet" type="text/css" href="../../normalize1.35.0.css"><link rel="stylesheet" type="text/css" href="../../rustdoc1.35.0.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../dark1.35.0.css"><link rel="stylesheet" type="text/css" href="../../light1.35.0.css" id="themeStyle"><script src="../../storage1.35.0.js"></script><noscript><link rel="stylesheet" href="../../noscript1.35.0.css"></noscript><link rel="shortcut icon" href="../../favicon1.35.0.ico"><style type="text/css">#crate-search{background-image:url("../../down-arrow1.35.0.svg");}</style></head><body class="rustdoc trait"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">&#9776;</div><a href='../../std/index.html'><img src='../../rust-logo1.35.0.png' alt='logo' width='100'></a><p class='location'>Trait Not</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.Output">Output</a></div><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.not">not</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'>ops</a></p><script>window.sidebarCurrent = {name: 'Not', ty: 'trait', relpath: ''};</script><script defer src="sidebar-items.js"></script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../../brush1.35.0.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../../theme1.35.0.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"></div><a id="settings-menu" href="../../settings.html"><img src="../../wheel1.35.0.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span class='since' title='Stable since Rust version 1.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/ops/bit.rs.html#33-42' title='goto source code'>[src]</a></span><span class='in-band'>Trait <a href='../index.html'>std</a>::<wbr><a href='index.html'>ops</a>::<wbr><a class="trait" href=''>Not</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust trait'><div class="docblock attributes">#[lang = "not"]
</div>pub trait Not {
    type <a href='#associatedtype.Output' class="type">Output</a>;
    <div class="docblock attributes">#[must_use]
</div>fn <a href='#tymethod.not' class='fnname'>not</a>(self) -&gt; Self::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a>;
}</pre></div><div class='docblock'><p>The unary logical negation operator <code>!</code>.</p>
<h1 id="examples" class="section-header"><a href="#examples">Examples</a></h1>
<p>An implementation of <code>Not</code> for <code>Answer</code>, which enables the use of <code>!</code> to
invert its value.</p>

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

<span class="attribute">#[<span class="ident">derive</span>(<span class="ident">Debug</span>, <span class="ident">PartialEq</span>)]</span>
<span class="kw">enum</span> <span class="ident">Answer</span> {
    <span class="ident">Yes</span>,
    <span class="ident">No</span>,
}

<span class="kw">impl</span> <span class="ident">Not</span> <span class="kw">for</span> <span class="ident">Answer</span> {
    <span class="kw">type</span> <span class="ident">Output</span> <span class="op">=</span> <span class="ident">Answer</span>;

    <span class="kw">fn</span> <span class="ident">not</span>(<span class="self">self</span>) <span class="op">-&gt;</span> <span class="self">Self</span>::<span class="ident">Output</span> {
        <span class="kw">match</span> <span class="self">self</span> {
            <span class="ident">Answer</span>::<span class="ident">Yes</span> <span class="op">=&gt;</span> <span class="ident">Answer</span>::<span class="ident">No</span>,
            <span class="ident">Answer</span>::<span class="ident">No</span> <span class="op">=&gt;</span> <span class="ident">Answer</span>::<span class="ident">Yes</span>
        }
    }
}

<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="op">!</span><span class="ident">Answer</span>::<span class="ident">Yes</span>, <span class="ident">Answer</span>::<span class="ident">No</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="op">!</span><span class="ident">Answer</span>::<span class="ident">No</span>, <span class="ident">Answer</span>::<span class="ident">Yes</span>);<a class="test-arrow" target="_blank" href="https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn%20main()%20%7B%0Ause%20std%3A%3Aops%3A%3ANot%3B%0A%0A%23%5Bderive(Debug%2C%20PartialEq)%5D%0Aenum%20Answer%20%7B%0A%20%20%20%20Yes%2C%0A%20%20%20%20No%2C%0A%7D%0A%0Aimpl%20Not%20for%20Answer%20%7B%0A%20%20%20%20type%20Output%20%3D%20Answer%3B%0A%0A%20%20%20%20fn%20not(self)%20-%3E%20Self%3A%3AOutput%20%7B%0A%20%20%20%20%20%20%20%20match%20self%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20Answer%3A%3AYes%20%3D%3E%20Answer%3A%3ANo%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20Answer%3A%3ANo%20%3D%3E%20Answer%3A%3AYes%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%7D%0A%0Aassert_eq!(!Answer%3A%3AYes%2C%20Answer%3A%3ANo)%3B%0Aassert_eq!(!Answer%3A%3ANo%2C%20Answer%3A%3AYes)%3B%0A%7D">Run</a></pre></div>
</div>
            <h2 id='associated-types' class='small-section-header'>Associated Types<a href='#associated-types' class='anchor'></a></h2><div class='methods'><h3 id='associatedtype.Output' class='method'><code id='Output.t'>type <a href='#associatedtype.Output' class="type">Output</a></code></h3><div class='docblock'><p>The resulting type after applying the <code>!</code> operator.</p>
</div></div><span class='loading-content'>Loading content...</span>
            <h2 id='required-methods' class='small-section-header'>Required methods<a href='#required-methods' class='anchor'></a></h2><div class='methods'><h3 id='tymethod.not' class='method'><code id='not.v'><div class="docblock attributes">#[must_use]
</div>fn <a href='#tymethod.not' class='fnname'>not</a>(self) -&gt; Self::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h3><div class='docblock'><p>Performs the unary <code>!</code> operation.</p>
</div></div><span class='loading-content'>Loading content...</span>
            <h2 id='implementors' class='small-section-header'>Implementors<a href='#implementors' class='anchor'></a></h2><div class='item-list' id='implementors-list'><h3 id='impl-Not' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.bool.html">bool</a></code><a href='#impl-Not' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-1' class="type"><code id='Output.t-1'>type <a href='#associatedtype.Output-1' class="type">Output</a> = <a class="primitive" href="../primitive.bool.html">bool</a></code></h4><h4 id='method.not' class="method hidden"><code id='not.v-1'>fn <a href='#method.not' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.bool.html">bool</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-1' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.i128.html">i128</a></code><a href='#impl-Not-1' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-2' class="type"><code id='Output.t-2'>type <a href='#associatedtype.Output-2' class="type">Output</a> = <a class="primitive" href="../primitive.i128.html">i128</a></code></h4><h4 id='method.not-1' class="method hidden"><code id='not.v-2'>fn <a href='#method.not-1' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.i128.html">i128</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-2' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.i16.html">i16</a></code><a href='#impl-Not-2' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-3' class="type"><code id='Output.t-3'>type <a href='#associatedtype.Output-3' class="type">Output</a> = <a class="primitive" href="../primitive.i16.html">i16</a></code></h4><h4 id='method.not-2' class="method hidden"><code id='not.v-3'>fn <a href='#method.not-2' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.i16.html">i16</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-3' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.i32.html">i32</a></code><a href='#impl-Not-3' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-4' class="type"><code id='Output.t-4'>type <a href='#associatedtype.Output-4' class="type">Output</a> = <a class="primitive" href="../primitive.i32.html">i32</a></code></h4><h4 id='method.not-3' class="method hidden"><code id='not.v-4'>fn <a href='#method.not-3' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.i32.html">i32</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-4' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.i64.html">i64</a></code><a href='#impl-Not-4' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-5' class="type"><code id='Output.t-5'>type <a href='#associatedtype.Output-5' class="type">Output</a> = <a class="primitive" href="../primitive.i64.html">i64</a></code></h4><h4 id='method.not-4' class="method hidden"><code id='not.v-5'>fn <a href='#method.not-4' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.i64.html">i64</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-5' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.i8.html">i8</a></code><a href='#impl-Not-5' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-6' class="type"><code id='Output.t-6'>type <a href='#associatedtype.Output-6' class="type">Output</a> = <a class="primitive" href="../primitive.i8.html">i8</a></code></h4><h4 id='method.not-5' class="method hidden"><code id='not.v-6'>fn <a href='#method.not-5' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.i8.html">i8</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-6' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.isize.html">isize</a></code><a href='#impl-Not-6' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-7' class="type"><code id='Output.t-7'>type <a href='#associatedtype.Output-7' class="type">Output</a> = <a class="primitive" href="../primitive.isize.html">isize</a></code></h4><h4 id='method.not-6' class="method hidden"><code id='not.v-7'>fn <a href='#method.not-6' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.isize.html">isize</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-7' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.u128.html">u128</a></code><a href='#impl-Not-7' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-8' class="type"><code id='Output.t-8'>type <a href='#associatedtype.Output-8' class="type">Output</a> = <a class="primitive" href="../primitive.u128.html">u128</a></code></h4><h4 id='method.not-7' class="method hidden"><code id='not.v-8'>fn <a href='#method.not-7' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.u128.html">u128</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-8' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.u16.html">u16</a></code><a href='#impl-Not-8' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-9' class="type"><code id='Output.t-9'>type <a href='#associatedtype.Output-9' class="type">Output</a> = <a class="primitive" href="../primitive.u16.html">u16</a></code></h4><h4 id='method.not-8' class="method hidden"><code id='not.v-9'>fn <a href='#method.not-8' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.u16.html">u16</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-9' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.u32.html">u32</a></code><a href='#impl-Not-9' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-10' class="type"><code id='Output.t-10'>type <a href='#associatedtype.Output-10' class="type">Output</a> = <a class="primitive" href="../primitive.u32.html">u32</a></code></h4><h4 id='method.not-9' class="method hidden"><code id='not.v-10'>fn <a href='#method.not-9' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.u32.html">u32</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-10' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.u64.html">u64</a></code><a href='#impl-Not-10' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-11' class="type"><code id='Output.t-11'>type <a href='#associatedtype.Output-11' class="type">Output</a> = <a class="primitive" href="../primitive.u64.html">u64</a></code></h4><h4 id='method.not-10' class="method hidden"><code id='not.v-11'>fn <a href='#method.not-10' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.u64.html">u64</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-11' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.u8.html">u8</a></code><a href='#impl-Not-11' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-12' class="type"><code id='Output.t-12'>type <a href='#associatedtype.Output-12' class="type">Output</a> = <a class="primitive" href="../primitive.u8.html">u8</a></code></h4><h4 id='method.not-11' class="method hidden"><code id='not.v-12'>fn <a href='#method.not-11' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.u8.html">u8</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-12' class='impl'><code class='in-band'>impl Not for <a class="primitive" href="../primitive.usize.html">usize</a></code><a href='#impl-Not-12' class='anchor'></a><a class='srclink' href='../../src/core/ops/bit.rs.html#47-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-13' class="type"><code id='Output.t-13'>type <a href='#associatedtype.Output-13' class="type">Output</a> = <a class="primitive" href="../primitive.usize.html">usize</a></code></h4><h4 id='method.not-12' class="method hidden"><code id='not.v-13'>fn <a href='#method.not-12' class='fnname'>not</a>(self) -&gt; <a class="primitive" href="../primitive.usize.html">usize</a></code><a class='srclink' href='../../src/core/ops/bit.rs.html#51' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-13' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i128.html">i128</a>&gt;</code><a href='#impl-Not-13' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-14' class="type"><code id='Output.t-14'>type <a href='#associatedtype.Output-14' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i128.html">i128</a>&gt;</code></h4><h4 id='method.not-13' class="method hidden"><code id='not.v-14'>fn <a href='#method.not-13' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i128.html">i128</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-14' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i16.html">i16</a>&gt;</code><a href='#impl-Not-14' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-15' class="type"><code id='Output.t-15'>type <a href='#associatedtype.Output-15' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i16.html">i16</a>&gt;</code></h4><h4 id='method.not-14' class="method hidden"><code id='not.v-15'>fn <a href='#method.not-14' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i16.html">i16</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-15' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i32.html">i32</a>&gt;</code><a href='#impl-Not-15' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-16' class="type"><code id='Output.t-16'>type <a href='#associatedtype.Output-16' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i32.html">i32</a>&gt;</code></h4><h4 id='method.not-15' class="method hidden"><code id='not.v-16'>fn <a href='#method.not-15' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i32.html">i32</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-16' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i64.html">i64</a>&gt;</code><a href='#impl-Not-16' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-17' class="type"><code id='Output.t-17'>type <a href='#associatedtype.Output-17' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i64.html">i64</a>&gt;</code></h4><h4 id='method.not-16' class="method hidden"><code id='not.v-17'>fn <a href='#method.not-16' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i64.html">i64</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-17' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i8.html">i8</a>&gt;</code><a href='#impl-Not-17' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-18' class="type"><code id='Output.t-18'>type <a href='#associatedtype.Output-18' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i8.html">i8</a>&gt;</code></h4><h4 id='method.not-17' class="method hidden"><code id='not.v-18'>fn <a href='#method.not-17' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i8.html">i8</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-18' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.isize.html">isize</a>&gt;</code><a href='#impl-Not-18' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-19' class="type"><code id='Output.t-19'>type <a href='#associatedtype.Output-19' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.isize.html">isize</a>&gt;</code></h4><h4 id='method.not-18' class="method hidden"><code id='not.v-19'>fn <a href='#method.not-18' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.isize.html">isize</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-19' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u128.html">u128</a>&gt;</code><a href='#impl-Not-19' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-20' class="type"><code id='Output.t-20'>type <a href='#associatedtype.Output-20' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u128.html">u128</a>&gt;</code></h4><h4 id='method.not-19' class="method hidden"><code id='not.v-20'>fn <a href='#method.not-19' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u128.html">u128</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-20' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u16.html">u16</a>&gt;</code><a href='#impl-Not-20' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-21' class="type"><code id='Output.t-21'>type <a href='#associatedtype.Output-21' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u16.html">u16</a>&gt;</code></h4><h4 id='method.not-20' class="method hidden"><code id='not.v-21'>fn <a href='#method.not-20' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u16.html">u16</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-21' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u32.html">u32</a>&gt;</code><a href='#impl-Not-21' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-22' class="type"><code id='Output.t-22'>type <a href='#associatedtype.Output-22' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u32.html">u32</a>&gt;</code></h4><h4 id='method.not-21' class="method hidden"><code id='not.v-22'>fn <a href='#method.not-21' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u32.html">u32</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-22' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u64.html">u64</a>&gt;</code><a href='#impl-Not-22' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-23' class="type"><code id='Output.t-23'>type <a href='#associatedtype.Output-23' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u64.html">u64</a>&gt;</code></h4><h4 id='method.not-22' class="method hidden"><code id='not.v-23'>fn <a href='#method.not-22' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u64.html">u64</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-23' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u8.html">u8</a>&gt;</code><a href='#impl-Not-23' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-24' class="type"><code id='Output.t-24'>type <a href='#associatedtype.Output-24' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u8.html">u8</a>&gt;</code></h4><h4 id='method.not-23' class="method hidden"><code id='not.v-24'>fn <a href='#method.not-23' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u8.html">u8</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-24' class='impl'><code class='in-band'>impl Not for <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.usize.html">usize</a>&gt;</code><a href='#impl-Not-24' class='anchor'></a><a class='srclink' href='../../src/core/num/wrapping.rs.html#228-235' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-25' class="type"><code id='Output.t-25'>type <a href='#associatedtype.Output-25' class="type">Output</a> = <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.usize.html">usize</a>&gt;</code></h4><h4 id='method.not-24' class="method hidden"><code id='not.v-25'>fn <a href='#method.not-24' class='fnname'>not</a>(self) -&gt; <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.usize.html">usize</a>&gt;</code><a class='srclink' href='../../src/core/num/wrapping.rs.html#232-234' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-25' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.bool.html">bool</a></code><a href='#impl-Not-25' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-26' class="type"><code id='Output.t-26'>type <a href='#associatedtype.Output-26' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.bool.html">bool</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-25' class="method hidden"><code id='not.v-26'>fn <a href='#method.not-25' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.bool.html">bool</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-26' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.i128.html">i128</a></code><a href='#impl-Not-26' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-27' class="type"><code id='Output.t-27'>type <a href='#associatedtype.Output-27' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.i128.html">i128</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-26' class="method hidden"><code id='not.v-27'>fn <a href='#method.not-26' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.i128.html">i128</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-27' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.i16.html">i16</a></code><a href='#impl-Not-27' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-28' class="type"><code id='Output.t-28'>type <a href='#associatedtype.Output-28' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.i16.html">i16</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-27' class="method hidden"><code id='not.v-28'>fn <a href='#method.not-27' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.i16.html">i16</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-28' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.i32.html">i32</a></code><a href='#impl-Not-28' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-29' class="type"><code id='Output.t-29'>type <a href='#associatedtype.Output-29' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.i32.html">i32</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-28' class="method hidden"><code id='not.v-29'>fn <a href='#method.not-28' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.i32.html">i32</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-29' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.i64.html">i64</a></code><a href='#impl-Not-29' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-30' class="type"><code id='Output.t-30'>type <a href='#associatedtype.Output-30' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.i64.html">i64</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-29' class="method hidden"><code id='not.v-30'>fn <a href='#method.not-29' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.i64.html">i64</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-30' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.i8.html">i8</a></code><a href='#impl-Not-30' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-31' class="type"><code id='Output.t-31'>type <a href='#associatedtype.Output-31' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.i8.html">i8</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-30' class="method hidden"><code id='not.v-31'>fn <a href='#method.not-30' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.i8.html">i8</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-31' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.isize.html">isize</a></code><a href='#impl-Not-31' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-32' class="type"><code id='Output.t-32'>type <a href='#associatedtype.Output-32' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.isize.html">isize</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-31' class="method hidden"><code id='not.v-32'>fn <a href='#method.not-31' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.isize.html">isize</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-32' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.u128.html">u128</a></code><a href='#impl-Not-32' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-33' class="type"><code id='Output.t-33'>type <a href='#associatedtype.Output-33' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.u128.html">u128</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-32' class="method hidden"><code id='not.v-33'>fn <a href='#method.not-32' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.u128.html">u128</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-33' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.u16.html">u16</a></code><a href='#impl-Not-33' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-34' class="type"><code id='Output.t-34'>type <a href='#associatedtype.Output-34' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.u16.html">u16</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-33' class="method hidden"><code id='not.v-34'>fn <a href='#method.not-33' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.u16.html">u16</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-34' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.u32.html">u32</a></code><a href='#impl-Not-34' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-35' class="type"><code id='Output.t-35'>type <a href='#associatedtype.Output-35' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.u32.html">u32</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-34' class="method hidden"><code id='not.v-35'>fn <a href='#method.not-34' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.u32.html">u32</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-35' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.u64.html">u64</a></code><a href='#impl-Not-35' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-36' class="type"><code id='Output.t-36'>type <a href='#associatedtype.Output-36' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.u64.html">u64</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-35' class="method hidden"><code id='not.v-36'>fn <a href='#method.not-35' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.u64.html">u64</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-36' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.u8.html">u8</a></code><a href='#impl-Not-36' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-37' class="type"><code id='Output.t-37'>type <a href='#associatedtype.Output-37' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.u8.html">u8</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-36' class="method hidden"><code id='not.v-37'>fn <a href='#method.not-36' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.u8.html">u8</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-37' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="primitive" href="../primitive.usize.html">usize</a></code><a href='#impl-Not-37' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-38' class="type"><code id='Output.t-38'>type <a href='#associatedtype.Output-38' class="type">Output</a> = &lt;<a class="primitive" href="../primitive.usize.html">usize</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-37' class="method hidden"><code id='not.v-38'>fn <a href='#method.not-37' class='fnname'>not</a>(self) -&gt; &lt;<a class="primitive" href="../primitive.usize.html">usize</a> as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-38' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i128.html">i128</a>&gt;</code><a href='#impl-Not-38' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-39' class="type"><code id='Output.t-39'>type <a href='#associatedtype.Output-39' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i128.html">i128</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-38' class="method hidden"><code id='not.v-39'>fn <a href='#method.not-38' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i128.html">i128</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-39' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i16.html">i16</a>&gt;</code><a href='#impl-Not-39' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-40' class="type"><code id='Output.t-40'>type <a href='#associatedtype.Output-40' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i16.html">i16</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-39' class="method hidden"><code id='not.v-40'>fn <a href='#method.not-39' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i16.html">i16</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-40' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i32.html">i32</a>&gt;</code><a href='#impl-Not-40' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-41' class="type"><code id='Output.t-41'>type <a href='#associatedtype.Output-41' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i32.html">i32</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-40' class="method hidden"><code id='not.v-41'>fn <a href='#method.not-40' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i32.html">i32</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-41' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i64.html">i64</a>&gt;</code><a href='#impl-Not-41' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-42' class="type"><code id='Output.t-42'>type <a href='#associatedtype.Output-42' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i64.html">i64</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-41' class="method hidden"><code id='not.v-42'>fn <a href='#method.not-41' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i64.html">i64</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-42' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i8.html">i8</a>&gt;</code><a href='#impl-Not-42' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-43' class="type"><code id='Output.t-43'>type <a href='#associatedtype.Output-43' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i8.html">i8</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-42' class="method hidden"><code id='not.v-43'>fn <a href='#method.not-42' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.i8.html">i8</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-43' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.isize.html">isize</a>&gt;</code><a href='#impl-Not-43' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-44' class="type"><code id='Output.t-44'>type <a href='#associatedtype.Output-44' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.isize.html">isize</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-43' class="method hidden"><code id='not.v-44'>fn <a href='#method.not-43' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.isize.html">isize</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-44' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u128.html">u128</a>&gt;</code><a href='#impl-Not-44' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-45' class="type"><code id='Output.t-45'>type <a href='#associatedtype.Output-45' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u128.html">u128</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-44' class="method hidden"><code id='not.v-45'>fn <a href='#method.not-44' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u128.html">u128</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-45' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u16.html">u16</a>&gt;</code><a href='#impl-Not-45' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-46' class="type"><code id='Output.t-46'>type <a href='#associatedtype.Output-46' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u16.html">u16</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-45' class="method hidden"><code id='not.v-46'>fn <a href='#method.not-45' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u16.html">u16</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-46' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u32.html">u32</a>&gt;</code><a href='#impl-Not-46' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-47' class="type"><code id='Output.t-47'>type <a href='#associatedtype.Output-47' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u32.html">u32</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-46' class="method hidden"><code id='not.v-47'>fn <a href='#method.not-46' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u32.html">u32</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-47' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u64.html">u64</a>&gt;</code><a href='#impl-Not-47' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-48' class="type"><code id='Output.t-48'>type <a href='#associatedtype.Output-48' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u64.html">u64</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-47' class="method hidden"><code id='not.v-48'>fn <a href='#method.not-47' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u64.html">u64</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-48' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u8.html">u8</a>&gt;</code><a href='#impl-Not-48' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-49' class="type"><code id='Output.t-49'>type <a href='#associatedtype.Output-49' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u8.html">u8</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-48' class="method hidden"><code id='not.v-49'>fn <a href='#method.not-48' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.u8.html">u8</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div><h3 id='impl-Not-49' class='impl'><code class='in-band'>impl&lt;'_&gt; Not for &amp;'_ <a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.usize.html">usize</a>&gt;</code><a href='#impl-Not-49' class='anchor'></a><a class='srclink' href='../../src/core/internal_macros.rs.html#10-17' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-50' class="type"><code id='Output.t-50'>type <a href='#associatedtype.Output-50' class="type">Output</a> = &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.usize.html">usize</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code></h4><h4 id='method.not-49' class="method hidden"><code id='not.v-50'>fn <a href='#method.not-49' class='fnname'>not</a>(self) -&gt; &lt;<a class="struct" href="../../std/num/struct.Wrapping.html" title="struct std::num::Wrapping">Wrapping</a>&lt;<a class="primitive" href="../primitive.usize.html">usize</a>&gt; as <a class="trait" href="../../std/ops/trait.Not.html" title="trait std::ops::Not">Not</a>&gt;::<a class="type" href="../../std/ops/trait.Not.html#associatedtype.Output" title="type std::ops::Not::Output">Output</a></code><a class='srclink' href='../../src/core/internal_macros.rs.html#14-16' title='goto source code'>[src]</a></h4></div></div><span class='loading-content'>Loading content...</span><script type="text/javascript">window.inlined_types=new Set([]);</script><script type="text/javascript" async
                         src="../../implementors/core/ops/bit/trait.Not.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="../../main1.35.0.js"></script><script defer src="../../search-index.js"></script></body></html>