Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > fdedb3cf2140df9b6d419a2338ab1caa > files > 1920

rust-doc-1.25.0-1.mga6.x86_64.rpm

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="generator" content="rustdoc">
    <meta name="description" content="API documentation for the Rust `BitXor` trait in crate `core`.">
    <meta name="keywords" content="rust, rustlang, rust-lang, BitXor">

    <title>core::ops::BitXor - Rust</title>

    <link rel="stylesheet" type="text/css" href="../../normalize.css">
    <link rel="stylesheet" type="text/css" href="../../rustdoc.css" id="mainThemeStyle">
    
    <link rel="stylesheet" type="text/css" href="../../dark.css">
    <link rel="stylesheet" type="text/css" href="../../main.css" id="themeStyle">
    <script src="../../storage.js"></script>
    

    <link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico">
    
</head>
<body class="rustdoc trait">
    <!--[if lte IE 8]>
    <div class="warning">
        This old browser is unsupported and will most likely display funky
        things.
    </div>
    <![endif]-->

    

    <nav class="sidebar">
        <div class="sidebar-menu">&#9776;</div>
        <a href='../../core/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a>
        <p class='location'>Trait BitXor</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.bitxor">bitxor</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='../index.html'>core</a>::<wbr><a href='index.html'>ops</a></p><script>window.sidebarCurrent = {name: 'BitXor', ty: 'trait', relpath: ''};</script><script defer src="sidebar-items.js"></script></div>
    </nav>

    <div class="theme-picker">
        <button id="theme-picker" aria-label="Pick another theme!">
            <img src="../../brush.svg" width="18" alt="Pick another theme!">
        </button>
        <div id="theme-choices"></div>
    </div>
    <script src="../../theme.js"></script>
    <nav class="sub">
        <form class="search-form js-only">
            <div class="search-container">
                <input class="search-input" name="search"
                       autocomplete="off"
                       placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
                       type="search">
            </div>
        </form>
    </nav>

    <section id='main' class="content">
<h1 class='fqn'><span class='in-band'>Trait <a href='../index.html'>core</a>::<wbr><a href='index.html'>ops</a>::<wbr><a class="trait" href=''>BitXor</a></span><span class='out-of-band'><span class='since' title='Stable since Rust version 1.0.0'>1.0.0</span><span id='render-detail'>
                   <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
                       [<span class='inner'>&#x2212;</span>]
                   </a>
               </span><a class='srclink' href='../../src/core/ops/bit.rs.html#292-300' title='goto source code'>[src]</a></span></h1>
<pre class='rust trait'><div class="docblock attributes">#[lang = "bitxor"]
</div>pub trait BitXor&lt;RHS&nbsp;=&nbsp;Self&gt; {
    type <a href='#associatedtype.Output' class="type">Output</a>;
    fn <a href='#tymethod.bitxor' class='fnname'>bitxor</a>(self, rhs: RHS) -&gt; Self::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;
}</pre><div class='docblock'><p>The bitwise XOR operator <code>^</code>.</p>
<p>Note that <code>RHS</code> is <code>Self</code> by default, but this is not mandatory.</p>
<h1 id="examples" class="section-header"><a href="#examples">Examples</a></h1>
<p>An implementation of <code>BitXor</code> that lifts <code>^</code> to a wrapper around <code>bool</code>.</p>

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

<span class="attribute">#[<span class="ident">derive</span>(<span class="ident">Debug</span>, <span class="ident">PartialEq</span>)]</span>
<span class="kw">struct</span> <span class="ident">Scalar</span>(<span class="ident">bool</span>);

<span class="kw">impl</span> <span class="ident">BitXor</span> <span class="kw">for</span> <span class="ident">Scalar</span> {
    <span class="kw">type</span> <span class="ident">Output</span> <span class="op">=</span> <span class="self">Self</span>;

    <span class="comment">// rhs is the &quot;right-hand side&quot; of the expression `a ^ b`</span>
    <span class="kw">fn</span> <span class="ident">bitxor</span>(<span class="self">self</span>, <span class="ident">rhs</span>: <span class="self">Self</span>) <span class="op">-&gt;</span> <span class="self">Self</span> {
        <span class="ident">Scalar</span>(<span class="self">self</span>.<span class="number">0</span> <span class="op">^</span> <span class="ident">rhs</span>.<span class="number">0</span>)
    }
}

<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Scalar</span>(<span class="bool-val">true</span>) <span class="op">^</span> <span class="ident">Scalar</span>(<span class="bool-val">true</span>), <span class="ident">Scalar</span>(<span class="bool-val">false</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Scalar</span>(<span class="bool-val">true</span>) <span class="op">^</span> <span class="ident">Scalar</span>(<span class="bool-val">false</span>), <span class="ident">Scalar</span>(<span class="bool-val">true</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Scalar</span>(<span class="bool-val">false</span>) <span class="op">^</span> <span class="ident">Scalar</span>(<span class="bool-val">true</span>), <span class="ident">Scalar</span>(<span class="bool-val">true</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Scalar</span>(<span class="bool-val">false</span>) <span class="op">^</span> <span class="ident">Scalar</span>(<span class="bool-val">false</span>), <span class="ident">Scalar</span>(<span class="bool-val">false</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%3ABitXor%3B%0A%0A%23%5Bderive(Debug%2C%20PartialEq)%5D%0Astruct%20Scalar(bool)%3B%0A%0Aimpl%20BitXor%20for%20Scalar%20%7B%0A%20%20%20%20type%20Output%20%3D%20Self%3B%0A%0A%20%20%20%20%2F%2F%20rhs%20is%20the%20%22right-hand%20side%22%20of%20the%20expression%20%60a%20%5E%20b%60%0A%20%20%20%20fn%20bitxor(self%2C%20rhs%3A%20Self)%20-%3E%20Self%20%7B%0A%20%20%20%20%20%20%20%20Scalar(self.0%20%5E%20rhs.0)%0A%20%20%20%20%7D%0A%7D%0A%0Aassert_eq!(Scalar(true)%20%5E%20Scalar(true)%2C%20Scalar(false))%3B%0Aassert_eq!(Scalar(true)%20%5E%20Scalar(false)%2C%20Scalar(true))%3B%0Aassert_eq!(Scalar(false)%20%5E%20Scalar(true)%2C%20Scalar(true))%3B%0Aassert_eq!(Scalar(false)%20%5E%20Scalar(false)%2C%20Scalar(false))%3B%0A%7D">Run</a></pre>
<p>An implementation of <code>BitXor</code> trait for a wrapper around <code>Vec&lt;bool&gt;</code>.</p>

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

<span class="attribute">#[<span class="ident">derive</span>(<span class="ident">Debug</span>, <span class="ident">PartialEq</span>)]</span>
<span class="kw">struct</span> <span class="ident">BooleanVector</span>(<span class="ident">Vec</span><span class="op">&lt;</span><span class="ident">bool</span><span class="op">&gt;</span>);

<span class="kw">impl</span> <span class="ident">BitXor</span> <span class="kw">for</span> <span class="ident">BooleanVector</span> {
    <span class="kw">type</span> <span class="ident">Output</span> <span class="op">=</span> <span class="self">Self</span>;

    <span class="kw">fn</span> <span class="ident">bitxor</span>(<span class="self">self</span>, <span class="ident">BooleanVector</span>(<span class="ident">rhs</span>): <span class="self">Self</span>) <span class="op">-&gt;</span> <span class="self">Self</span> {
        <span class="kw">let</span> <span class="ident">BooleanVector</span>(<span class="ident">lhs</span>) <span class="op">=</span> <span class="self">self</span>;
        <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">lhs</span>.<span class="ident">len</span>(), <span class="ident">rhs</span>.<span class="ident">len</span>());
        <span class="ident">BooleanVector</span>(<span class="ident">lhs</span>.<span class="ident">iter</span>()
                         .<span class="ident">zip</span>(<span class="ident">rhs</span>.<span class="ident">iter</span>())
                         .<span class="ident">map</span>(<span class="op">|</span>(<span class="ident">x</span>, <span class="ident">y</span>)<span class="op">|</span> (<span class="kw-2">*</span><span class="ident">x</span> <span class="op">||</span> <span class="kw-2">*</span><span class="ident">y</span>) <span class="op">&amp;&amp;</span> <span class="op">!</span>(<span class="kw-2">*</span><span class="ident">x</span> <span class="op">&amp;&amp;</span> <span class="kw-2">*</span><span class="ident">y</span>))
                         .<span class="ident">collect</span>())
    }
}

<span class="kw">let</span> <span class="ident">bv1</span> <span class="op">=</span> <span class="ident">BooleanVector</span>(<span class="macro">vec</span><span class="macro">!</span>[<span class="bool-val">true</span>, <span class="bool-val">true</span>, <span class="bool-val">false</span>, <span class="bool-val">false</span>]);
<span class="kw">let</span> <span class="ident">bv2</span> <span class="op">=</span> <span class="ident">BooleanVector</span>(<span class="macro">vec</span><span class="macro">!</span>[<span class="bool-val">true</span>, <span class="bool-val">false</span>, <span class="bool-val">true</span>, <span class="bool-val">false</span>]);
<span class="kw">let</span> <span class="ident">expected</span> <span class="op">=</span> <span class="ident">BooleanVector</span>(<span class="macro">vec</span><span class="macro">!</span>[<span class="bool-val">false</span>, <span class="bool-val">true</span>, <span class="bool-val">true</span>, <span class="bool-val">false</span>]);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">bv1</span> <span class="op">^</span> <span class="ident">bv2</span>, <span class="ident">expected</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%3ABitXor%3B%0A%0A%23%5Bderive(Debug%2C%20PartialEq)%5D%0Astruct%20BooleanVector(Vec%3Cbool%3E)%3B%0A%0Aimpl%20BitXor%20for%20BooleanVector%20%7B%0A%20%20%20%20type%20Output%20%3D%20Self%3B%0A%0A%20%20%20%20fn%20bitxor(self%2C%20BooleanVector(rhs)%3A%20Self)%20-%3E%20Self%20%7B%0A%20%20%20%20%20%20%20%20let%20BooleanVector(lhs)%20%3D%20self%3B%0A%20%20%20%20%20%20%20%20assert_eq!(lhs.len()%2C%20rhs.len())%3B%0A%20%20%20%20%20%20%20%20BooleanVector(lhs.iter()%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.zip(rhs.iter())%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.map(%7C(x%2C%20y)%7C%20(*x%20%7C%7C%20*y)%20%26%26%20!(*x%20%26%26%20*y))%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.collect())%0A%20%20%20%20%7D%0A%7D%0A%0Alet%20bv1%20%3D%20BooleanVector(vec!%5Btrue%2C%20true%2C%20false%2C%20false%5D)%3B%0Alet%20bv2%20%3D%20BooleanVector(vec!%5Btrue%2C%20false%2C%20true%2C%20false%5D)%3B%0Alet%20expected%20%3D%20BooleanVector(vec!%5Bfalse%2C%20true%2C%20true%2C%20false%5D)%3B%0Aassert_eq!(bv1%20%5E%20bv2%2C%20expected)%3B%0A%7D">Run</a></pre>
</div>
            <h2 id='associated-types' class='small-section-header'>
              Associated Types<a href='#associated-types' class='anchor'></a>
            </h2>
            <div class='methods'>
        <h3 id='associatedtype.Output' class='method'><span id='Output.t' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a></code></span></h3><div class='docblock'><p>The resulting type after applying the <code>^</code> operator.</p>
</div></div>
            <h2 id='required-methods' class='small-section-header'>
              Required Methods<a href='#required-methods' class='anchor'></a>
            </h2>
            <div class='methods'>
        <h3 id='tymethod.bitxor' class='method'><span id='bitxor.v' class='invisible'><code>fn <a href='#tymethod.bitxor' class='fnname'>bitxor</a>(self, rhs: RHS) -&gt; Self::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a></code></span></h3><div class='docblock'><p>Performs the <code>^</code> operation.</p>
</div></div>
        <h2 id='implementors' class='small-section-header'>
          Implementors<a href='#implementors' class='anchor'></a>
        </h2>
        <ul class='item-list' id='implementors-list'>
    <li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;usize&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u8&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u16&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u32&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u64&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;u128&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;isize&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i8&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i16&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i32&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i64&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/num/wrapping.rs.html#248-255' title='goto source code'>[src]</a></div><code>impl BitXor for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;&gt; for &amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;&gt; for <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;&gt; for &amp;'b <a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt; as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;<a class="struct" href="../../core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;i128&gt;&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for bool<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = bool;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;bool&gt; for &amp;'a bool<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;bool as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;bool&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a bool&gt; for bool<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;bool as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;bool&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a bool&gt; for &amp;'b bool<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;bool as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;bool&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for usize<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = usize;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;usize&gt; for &amp;'a usize<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;usize as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;usize&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a usize&gt; for usize<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;usize as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;usize&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a usize&gt; for &amp;'b usize<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;usize as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;usize&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for u8<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = u8;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;u8&gt; for &amp;'a u8<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u8 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u8&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a u8&gt; for u8<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u8 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u8&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a u8&gt; for &amp;'b u8<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u8 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u8&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for u16<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = u16;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;u16&gt; for &amp;'a u16<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u16 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u16&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a u16&gt; for u16<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u16 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u16&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a u16&gt; for &amp;'b u16<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u16 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u16&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for u32<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = u32;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;u32&gt; for &amp;'a u32<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u32 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u32&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a u32&gt; for u32<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u32 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u32&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a u32&gt; for &amp;'b u32<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u32 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u32&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for u64<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = u64;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;u64&gt; for &amp;'a u64<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u64 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u64&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a u64&gt; for u64<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u64 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u64&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a u64&gt; for &amp;'b u64<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u64 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u64&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for u128<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = u128;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;u128&gt; for &amp;'a u128<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u128 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u128&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a u128&gt; for u128<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u128 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u128&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a u128&gt; for &amp;'b u128<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;u128 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;u128&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for isize<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = isize;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;isize&gt; for &amp;'a isize<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;isize as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;isize&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a isize&gt; for isize<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;isize as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;isize&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a isize&gt; for &amp;'b isize<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;isize as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;isize&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for i8<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = i8;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;i8&gt; for &amp;'a i8<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i8 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i8&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a i8&gt; for i8<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i8 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i8&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a i8&gt; for &amp;'b i8<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i8 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i8&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for i16<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = i16;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;i16&gt; for &amp;'a i16<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i16 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i16&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a i16&gt; for i16<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i16 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i16&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a i16&gt; for &amp;'b i16<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i16 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i16&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for i32<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = i32;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;i32&gt; for &amp;'a i32<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i32 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i32&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a i32&gt; for i32<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i32 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i32&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a i32&gt; for &amp;'b i32<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i32 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i32&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for i64<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = i64;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;i64&gt; for &amp;'a i64<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i64 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i64&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a i64&gt; for i64<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i64 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i64&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a i64&gt; for &amp;'b i64<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i64 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i64&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/ops/bit.rs.html#305-310' title='goto source code'>[src]</a></div><code>impl BitXor for i128<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = i128;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#41-48' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;i128&gt; for &amp;'a i128<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i128 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i128&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#51-58' title='goto source code'>[src]</a></div><code>impl&lt;'a&gt; BitXor&lt;&amp;'a i128&gt; for i128<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i128 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i128&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
<li><div class='out-of-band'><a class='srclink' href='../../src/core/internal_macros.rs.html#61-68' title='goto source code'>[src]</a></div><code>impl&lt;'a, 'b&gt; BitXor&lt;&amp;'a i128&gt; for &amp;'b i128<span class="where fmt-newline">  type <a href='#associatedtype.Output' class="type">Output</a> = &lt;i128 as <a class="trait" href="../../core/ops/trait.BitXor.html" title="trait core::ops::BitXor">BitXor</a>&lt;i128&gt;&gt;::<a class="type" href="../../core/ops/trait.BitXor.html#associatedtype.Output" title="type core::ops::BitXor::Output">Output</a>;</span></code></li>
</ul><script type="text/javascript" async
                         src="../../implementors/core/ops/trait.BitXor.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>
            </div>
        </div>
    </aside>

    

    <script>
        window.rootPath = "../../";
        window.currentCrate = "core";
    </script>
    <script src="../../main.js"></script>
    <script defer src="../../search-index.js"></script>
</body>
</html>