edlang/itertools/enum.EitherOrBoth.html

178 lines
76 KiB
HTML
Raw Normal View History

<!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="Value that either holds a single A or B, or both."><title>EitherOrBoth in itertools - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/FiraSans-Regular-018c141bf0843ffd.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/FiraSans-Medium-8f9a781e4970d388.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2"><link rel="stylesheet" href="../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../static.files/rustdoc-ac92e1bbe349e143.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="itertools" data-themes="" data-resource-suffix="" data-rustdoc-version="1.76.0 (07dca489a 2024-02-04)" data-channel="1.76.0" data-search-js="search-2b6ce74ff89ae146.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../static.files/storage-f2adc0d6ca4d09fb.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-305769736d49e732.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-feafe1bb7466e4bd.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-16x16-8b506e7a72182f1c.png"><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc enum"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle">&#9776;</button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../itertools/index.html">itertools</a><span class="version">0.12.1</span></h2></div><h2 class="location"><a href="#">EitherOrBoth</a></h2><div class="sidebar-elems"><section><h3><a href="#variants">Variants</a></h3><ul class="block variant"><li><a href="#variant.Both">Both</a></li><li><a href="#variant.Left">Left</a></li><li><a href="#variant.Right">Right</a></li></ul><h3><a href="#implementations">Methods</a></h3><ul class="block method"><li><a href="#method.as_deref">as_deref</a></li><li><a href="#method.as_deref_mut">as_deref_mut</a></li><li><a href="#method.as_mut">as_mut</a></li><li><a href="#method.as_ref">as_ref</a></li><li><a href="#method.both">both</a></li><li><a href="#method.flip">flip</a></li><li><a href="#method.has_left">has_left</a></li><li><a href="#method.has_right">has_right</a></li><li><a href="#method.insert_both">insert_both</a></li><li><a href="#method.insert_left">insert_left</a></li><li><a href="#method.insert_right">insert_right</a></li><li><a href="#method.into_left">into_left</a></li><li><a href="#method.into_right">into_right</a></li><li><a href="#method.is_both">is_both</a></li><li><a href="#method.is_left">is_left</a></li><li><a href="#method.is_right">is_right</a></li><li><a href="#method.just_left">just_left</a></li><li><a href="#method.just_right">just_right</a></li><li><a href="#method.left">left</a></li><li><a href="#method.left_and_right">left_and_right</a></li><li><a href="#method.left_and_then">left_and_then</a></li><li><a href="#method.left_or_insert">left_or_insert</a></li><li><a href="#method.left_or_insert_with">left_or_insert_with</a></li><li><a href="#method.map_any">map_any</a></li><li><a href="#method.map_left">map_left</a></li><li><a href="#method.map_right">map_right</a></li><li><a href="#method.or">or</a></li
<main><div class="width-limiter"><nav class="sub"><form class="search-form"><span></span><div id="sidebar-button" tabindex="-1"><a href="../itertools/all.html" title="show sidebar"></a></div><input class="search-input" name="search" aria-label="Run search in the documentation" autocomplete="off" spellcheck="false" placeholder="Click or press S to search, ? for more options…" type="search"><div id="help-button" tabindex="-1"><a href="../help.html" title="help">?</a></div><div id="settings-menu" tabindex="-1"><a href="../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../static.files/wheel-7b819b6101059cd0.svg"></a></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1>Enum <a href="index.html">itertools</a>::<wbr><a class="enum" href="#">EitherOrBoth</a><button id="copy-path" title="Copy item path to clipboard"><img src="../static.files/clipboard-7571035ce49a181d.svg" width="19" height="18" alt="Copy item path"></button></h1><span class="out-of-band"><a class="src" href="../src/itertools/either_or_both.rs.html#9-16">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>&#x2212;</span>]</button></span></div><pre class="rust item-decl"><code>pub enum EitherOrBoth&lt;A, B = A&gt; {
Both(A, B),
Left(A),
Right(B),
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Value that either holds a single A or B, or both.</p>
</div></details><h2 id="variants" class="variants section-header">Variants<a href="#variants" class="anchor">§</a></h2><div class="variants"><section id="variant.Both" class="variant"><a href="#variant.Both" class="anchor">§</a><h3 class="code-header">Both(A, B)</h3></section><div class="docblock"><p>Both values are present.</p>
</div><section id="variant.Left" class="variant"><a href="#variant.Left" class="anchor">§</a><h3 class="code-header">Left(A)</h3></section><div class="docblock"><p>Only the left value of type <code>A</code> is present.</p>
</div><section id="variant.Right" class="variant"><a href="#variant.Right" class="anchor">§</a><h3 class="code-header">Right(B)</h3></section><div class="docblock"><p>Only the right value of type <code>B</code> is present.</p>
</div></div><h2 id="implementations" class="section-header">Implementations<a href="#implementations" class="anchor">§</a></h2><div id="implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-EitherOrBoth%3CA,+B%3E" class="impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#18-464">source</a><a href="#impl-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.has_left" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#20-22">source</a><h4 class="code-header">pub fn <a href="#method.has_left" class="fn">has_left</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>If <code>Left</code>, or <code>Both</code>, return true. Otherwise, return false.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.has_right" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#25-27">source</a><h4 class="code-header">pub fn <a href="#method.has_right" class="fn">has_right</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>If <code>Right</code>, or <code>Both</code>, return true, otherwise, return false.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_left" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#31-33">source</a><h4 class="code-header">pub fn <a href="#method.is_left" class="fn">is_left</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>If <code>Left</code>, return true. Otherwise, return false.
Exclusive version of <a href="enum.EitherOrBoth.html#method.has_left" title="method itertools::EitherOrBoth::has_left"><code>has_left</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_right" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#37-39">source</a><h4 class="code-header">pub fn <a href="#method.is_right" class="fn">is_right</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>If <code>Right</code>, return true. Otherwise, return false.
Exclusive version of <a href="enum.EitherOrBoth.html#method.has_right" title="method itertools::EitherOrBoth::has_right"><code>has_right</code></a>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_both" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#42-44">source</a><h4 class="code-header">pub fn <a href="#method.is_both" class="fn">is_both</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>If <code>Both</code>, return true. Otherwise, return false.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.left" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#47-52">source</a><h4 class="code-header">pub fn <a href="#method.left" class="fn">left</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;A&gt;</h4></section></summary><div class="docblock"><p>If <code>Left</code>, or <code>Both</code>, return <code>Some</code> with the left value. Otherwise, return <code>None</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.right" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#55-60">source</a><h4 class="code-header">pub fn <a href="#method.right" class="fn">right</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;B&gt;</h4></section></summary><div class="docblock"><p>If <code>Right</code>, or <code>Both</code>, return <code>Some</code> with the right value. Otherwise, return <code>None</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.left_and_right" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#66-68">source</a><h4 class="code-header">pub fn <a href="#method.left_and_right" class="fn">left_and_right</a>(self) -&gt; (<a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;A&gt;, <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;B&gt;)</h4></section></summary><div class="docblock"><p>Return tuple of options corresponding to the left and right value respectively</p>
<p>If <code>Left</code> return <code>(Some(..), None)</code>, if <code>Right</code> return <code>(None,Some(..))</code>, else return
<code>(Some(..),Some(..))</code></p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.just_left" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#88-93">source</a><h4 class="code-header">pub fn <a href="#method.just_left" class="fn">just_left</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;A&gt;</h4></section></summary><div class="docblock"><p>If <code>Left</code>, return <code>Some</code> with the left value. If <code>Right</code> or <code>Both</code>, return <code>None</code>.</p>
<h5 id="examples"><a href="#examples">Examples</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="comment">// On the `Left` variant.
</span><span class="kw">let </span>x: EitherOrBoth&lt;<span class="kw">_</span>, ()&gt; = Left(<span class="string">"bonjour"</span>);
<span class="macro">assert_eq!</span>(x.just_left(), <span class="prelude-val">Some</span>(<span class="string">"bonjour"</span>));
<span class="comment">// On the `Right` variant.
</span><span class="kw">let </span>x: EitherOrBoth&lt;(), <span class="kw">_</span>&gt; = Right(<span class="string">"hola"</span>);
<span class="macro">assert_eq!</span>(x.just_left(), <span class="prelude-val">None</span>);
<span class="comment">// On the `Both` variant.
</span><span class="kw">let </span>x = Both(<span class="string">"bonjour"</span>, <span class="string">"hola"</span>);
<span class="macro">assert_eq!</span>(x.just_left(), <span class="prelude-val">None</span>);</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.just_right" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#113-118">source</a><h4 class="code-header">pub fn <a href="#method.just_right" class="fn">just_right</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;B&gt;</h4></section></summary><div class="docblock"><p>If <code>Right</code>, return <code>Some</code> with the right value. If <code>Left</code> or <code>Both</code>, return <code>None</code>.</p>
<h5 id="examples-1"><a href="#examples-1">Examples</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="comment">// On the `Left` variant.
</span><span class="kw">let </span>x: EitherOrBoth&lt;<span class="kw">_</span>, ()&gt; = Left(<span class="string">"auf wiedersehen"</span>);
<span class="macro">assert_eq!</span>(x.just_left(), <span class="prelude-val">Some</span>(<span class="string">"auf wiedersehen"</span>));
<span class="comment">// On the `Right` variant.
</span><span class="kw">let </span>x: EitherOrBoth&lt;(), <span class="kw">_</span>&gt; = Right(<span class="string">"adios"</span>);
<span class="macro">assert_eq!</span>(x.just_left(), <span class="prelude-val">None</span>);
<span class="comment">// On the `Both` variant.
</span><span class="kw">let </span>x = Both(<span class="string">"auf wiedersehen"</span>, <span class="string">"adios"</span>);
<span class="macro">assert_eq!</span>(x.just_left(), <span class="prelude-val">None</span>);</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.both" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#121-126">source</a><h4 class="code-header">pub fn <a href="#method.both" class="fn">both</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.tuple.html">(A, B)</a>&gt;</h4></section></summary><div class="docblock"><p>If <code>Both</code>, return <code>Some</code> containing the left and right values. Otherwise, return <code>None</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.into_left" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#129-137">source</a><h4 class="code-header">pub fn <a href="#method.into_left" class="fn">into_left</a>(self) -&gt; A<div class="where">where
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;A&gt;,</div></h4></section></summary><div class="docblock"><p>If <code>Left</code> or <code>Both</code>, return the left value. Otherwise, convert the right value and return it.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.into_right" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#140-148">source</a><h4 class="code-header">pub fn <a href="#method.into_right" class="fn">into_right</a>(self) -&gt; B<div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;B&gt;,</div></h4></section></summary><div class="docblock"><p>If <code>Right</code> or <code>Both</code>, return the right value. Otherwise, convert the left value and return it.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_ref" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#151-157">source</a><h4 class="code-header">pub fn <a href="#method.as_ref" class="fn">as_ref</a>(&amp;self) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;A</a>, <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;B</a>&gt;</h4></section></summary><div class="docblock"><p>Converts from <code>&amp;EitherOrBoth&lt;A, B&gt;</code> to <code>EitherOrBoth&lt;&amp;A, &amp;B&gt;</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_mut" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#160-166">source</a><h4 class="code-header">pub fn <a href="#method.as_mut" class="fn">as_mut</a>(&amp;mut self) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut A</a>, <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut B</a>&gt;</h4></section></summary><div class="docblock"><p>Converts from <code>&amp;mut EitherOrBoth&lt;A, B&gt;</code> to <code>EitherOrBoth&lt;&amp;mut A, &amp;mut B&gt;</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_deref" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#169-179">source</a><h4 class="code-header">pub fn <a href="#method.as_deref" class="fn">as_deref</a>(&amp;self) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;&amp;A::<a class="associatedtype" href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a>, &amp;B::<a class="associatedtype" href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a>&gt;<div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a>,
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a>,</div></h4></section></summary><div class="docblock"><p>Converts from <code>&amp;EitherOrBoth&lt;A, B&gt;</code> to <code>EitherOrBoth&lt;&amp;_, &amp;_&gt;</code> using the <a href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref"><code>Deref</code></a> trait.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_deref_mut" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#182-192">source</a><h4 class="code-header">pub fn <a href="#method.as_deref_mut" class="fn">as_deref_mut</a>(&amp;mut self) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;&amp;mut A::<a class="associatedtype" href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a>, &amp;mut B::<a class="associatedtype" href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a>&gt;<div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut">DerefMut</a>,
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut">DerefMut</a>,</div></h4></section></summary><div class="docblock"><p>Converts from <code>&amp;mut EitherOrBoth&lt;A, B&gt;</code> to <code>EitherOrBoth&lt;&amp;mut _, &amp;mut _&gt;</code> using the <a href="https://doc.rust-lang.org/1.76.0/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut"><code>DerefMut</code></a> trait.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.flip" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#195-201">source</a><h4 class="code-header">pub fn <a href="#method.flip" class="fn">flip</a>(self) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;B, A&gt;</h4></section></summary><div class="docblock"><p>Convert <code>EitherOrBoth&lt;A, B&gt;</code> to <code>EitherOrBoth&lt;B, A&gt;</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.map_left" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#205-214">source</a><h4 class="code-header">pub fn <a href="#method.map_left" class="fn">map_left</a>&lt;F, M&gt;(self, f: F) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;M, B&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(A) -&gt; M,</div></h4></section></summary><div class="docblock"><p>Apply the function <code>f</code> on the value <code>a</code> in <code>Left(a)</code> or <code>Both(a, b)</code> variants. If it is
present rewrapping the result in <code>self</code>s original variant.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.map_right" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#218-227">source</a><h4 class="code-header">pub fn <a href="#method.map_right" class="fn">map_right</a>&lt;F, M&gt;(self, f: F) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, M&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(B) -&gt; M,</div></h4></section></summary><div class="docblock"><p>Apply the function <code>f</code> on the value <code>b</code> in <code>Right(b)</code> or <code>Both(a, b)</code> variants.
If it is present rewrapping the result in <code>self</code>s original variant.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.map_any" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#232-242">source</a><h4 class="code-header">pub fn <a href="#method.map_any" class="fn">map_any</a>&lt;F, L, G, R&gt;(self, f: F, g: G) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;L, R&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(A) -&gt; L,
G: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(B) -&gt; R,</div></h4></section></summary><div class="docblock"><p>Apply the functions <code>f</code> and <code>g</code> on the value <code>a</code> and <code>b</code> respectively;
found in <code>Left(a)</code>, <code>Right(b)</code>, or <code>Both(a, b)</code> variants.
The Result is rewrapped <code>self</code>s original variant.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.left_and_then" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#246-254">source</a><h4 class="code-header">pub fn <a href="#method.left_and_then" class="fn">left_and_then</a>&lt;F, L&gt;(self, f: F) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;L, B&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(A) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;L, B&gt;,</div></h4></section></summary><div class="docblock"><p>Apply the function <code>f</code> on the value <code>a</code> in <code>Left(a)</code> or <code>Both(a, _)</code> variants if it is
present.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.right_and_then" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#258-266">source</a><h4 class="code-header">pub fn <a href="#method.right_and_then" class="fn">right_and_then</a>&lt;F, R&gt;(self, f: F) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, R&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(B) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, R&gt;,</div></h4></section></summary><div class="docblock"><p>Apply the function <code>f</code> on the value <code>b</code>
in <code>Right(b)</code> or <code>Both(_, b)</code> variants if it is present.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.or" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#287-293">source</a><h4 class="code-header">pub fn <a href="#method.or" class="fn">or</a>(self, l: A, r: B) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.tuple.html">(A, B)</a></h4></section></summary><div class="docblock"><p>Returns a tuple consisting of the <code>l</code> and <code>r</code> in <code>Both(l, r)</code>, if present.
Otherwise, returns the wrapped value for the present element, and the supplied
value for the other. The first (<code>l</code>) argument is used for a missing <code>Left</code>
value. The second (<code>r</code>) argument is used for a missing <code>Right</code> value.</p>
<p>Arguments passed to <code>or</code> are eagerly evaluated; if you are passing
the result of a function call, it is recommended to use <a href="enum.EitherOrBoth.html#method.or_else" title="method itertools::EitherOrBoth::or_else"><code>or_else</code></a>,
which is lazily evaluated.</p>
<h5 id="examples-2"><a href="#examples-2">Examples</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="macro">assert_eq!</span>(EitherOrBoth::Both(<span class="string">"tree"</span>, <span class="number">1</span>).or(<span class="string">"stone"</span>, <span class="number">5</span>), (<span class="string">"tree"</span>, <span class="number">1</span>));
<span class="macro">assert_eq!</span>(EitherOrBoth::Left(<span class="string">"tree"</span>).or(<span class="string">"stone"</span>, <span class="number">5</span>), (<span class="string">"tree"</span>, <span class="number">5</span>));
<span class="macro">assert_eq!</span>(EitherOrBoth::Right(<span class="number">1</span>).or(<span class="string">"stone"</span>, <span class="number">5</span>), (<span class="string">"stone"</span>, <span class="number">1</span>));</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.or_default" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#298-308">source</a><h4 class="code-header">pub fn <a href="#method.or_default" class="fn">or_default</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.tuple.html">(A, B)</a><div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/default/trait.Default.html" title="trait core::default::Default">Default</a>,
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/default/trait.Default.html" title="trait core::default::Default">Default</a>,</div></h4></section></summary><div class="docblock"><p>Returns a tuple consisting of the <code>l</code> and <code>r</code> in <code>Both(l, r)</code>, if present.
Otherwise, returns the wrapped value for the present element, and the <a href="https://doc.rust-lang.org/1.76.0/core/default/trait.Default.html#tymethod.default" title="associated function core::default::Default::default"><code>default</code></a>
for the other.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.or_else" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#324-330">source</a><h4 class="code-header">pub fn <a href="#method.or_else" class="fn">or_else</a>&lt;L: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>() -&gt; A, R: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>() -&gt; B&gt;(self, l: L, r: R) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.tuple.html">(A, B)</a></h4></section></summary><div class="docblock"><p>Returns a tuple consisting of the <code>l</code> and <code>r</code> in <code>Both(l, r)</code>, if present.
Otherwise, returns the wrapped value for the present element, and computes the
missing value with the supplied closure. The first argument (<code>l</code>) is used for a
missing <code>Left</code> value. The second argument (<code>r</code>) is used for a missing <code>Right</code> value.</p>
<h5 id="examples-3"><a href="#examples-3">Examples</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">let </span>k = <span class="number">10</span>;
<span class="macro">assert_eq!</span>(EitherOrBoth::Both(<span class="string">"tree"</span>, <span class="number">1</span>).or_else(|| <span class="string">"stone"</span>, || <span class="number">2 </span>* k), (<span class="string">"tree"</span>, <span class="number">1</span>));
<span class="macro">assert_eq!</span>(EitherOrBoth::Left(<span class="string">"tree"</span>).or_else(|| <span class="string">"stone"</span>, || <span class="number">2 </span>* k), (<span class="string">"tree"</span>, <span class="number">20</span>));
<span class="macro">assert_eq!</span>(EitherOrBoth::Right(<span class="number">1</span>).or_else(|| <span class="string">"stone"</span>, || <span class="number">2 </span>* k), (<span class="string">"stone"</span>, <span class="number">1</span>));</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.left_or_insert" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#334-336">source</a><h4 class="code-header">pub fn <a href="#method.left_or_insert" class="fn">left_or_insert</a>(&amp;mut self, val: A) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut A</a></h4></section></summary><div class="docblock"><p>Returns a mutable reference to the left value. If the left value is not present,
it is replaced with <code>val</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.right_or_insert" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#340-342">source</a><h4 class="code-header">pub fn <a href="#method.right_or_insert" class="fn">right_or_insert</a>(&amp;mut self, val: B) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut B</a></h4></section></summary><div class="docblock"><p>Returns a mutable reference to the right value. If the right value is not present,
it is replaced with <code>val</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.left_or_insert_with" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#346-354">source</a><h4 class="code-header">pub fn <a href="#method.left_or_insert_with" class="fn">left_or_insert_with</a>&lt;F&gt;(&amp;mut self, f: F) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut A</a><div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>() -&gt; A,</div></h4></section></summary><div class="docblock"><p>If the left value is not present, replace it the value computed by the closure <code>f</code>.
Returns a mutable reference to the now-present left value.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.right_or_insert_with" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#358-366">source</a><h4 class="code-header">pub fn <a href="#method.right_or_insert_with" class="fn">right_or_insert_with</a>&lt;F&gt;(&amp;mut self, f: F) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut B</a><div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>() -&gt; B,</div></h4></section></summary><div class="docblock"><p>If the right value is not present, replace it the value computed by the closure <code>f</code>.
Returns a mutable reference to the now-present right value.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.insert_left" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#384-409">source</a><h4 class="code-header">pub fn <a href="#method.insert_left" class="fn">insert_left</a>(&amp;mut self, val: A) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut A</a></h4></section></summary><div class="docblock"><p>Sets the <code>left</code> value of this instance, and returns a mutable reference to it.
Does not affect the <code>right</code> value.</p>
<h5 id="examples-4"><a href="#examples-4">Examples</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code>
<span class="comment">// Overwriting a pre-existing value.
</span><span class="kw">let </span><span class="kw-2">mut </span>either: EitherOrBoth&lt;<span class="kw">_</span>, ()&gt; = Left(<span class="number">0_u32</span>);
<span class="macro">assert_eq!</span>(<span class="kw-2">*</span>either.insert_left(<span class="number">69</span>), <span class="number">69</span>);
<span class="comment">// Inserting a second value.
</span><span class="kw">let </span><span class="kw-2">mut </span>either = Right(<span class="string">"no"</span>);
<span class="macro">assert_eq!</span>(<span class="kw-2">*</span>either.insert_left(<span class="string">"yes"</span>), <span class="string">"yes"</span>);
<span class="macro">assert_eq!</span>(either, Both(<span class="string">"yes"</span>, <span class="string">"no"</span>));</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.insert_right" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#426-450">source</a><h4 class="code-header">pub fn <a href="#method.insert_right" class="fn">insert_right</a>(&amp;mut self, val: B) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut B</a></h4></section></summary><div class="docblock"><p>Sets the <code>right</code> value of this instance, and returns a mutable reference to it.
Does not affect the <code>left</code> value.</p>
<h5 id="examples-5"><a href="#examples-5">Examples</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="comment">// Overwriting a pre-existing value.
</span><span class="kw">let </span><span class="kw-2">mut </span>either: EitherOrBoth&lt;<span class="kw">_</span>, ()&gt; = Left(<span class="number">0_u32</span>);
<span class="macro">assert_eq!</span>(<span class="kw-2">*</span>either.insert_left(<span class="number">69</span>), <span class="number">69</span>);
<span class="comment">// Inserting a second value.
</span><span class="kw">let </span><span class="kw-2">mut </span>either = Left(<span class="string">"what's"</span>);
<span class="macro">assert_eq!</span>(<span class="kw-2">*</span>either.insert_right(<span class="number">9 </span>+ <span class="number">10</span>), <span class="number">21 </span>- <span class="number">2</span>);
<span class="macro">assert_eq!</span>(either, Both(<span class="string">"what's"</span>, <span class="number">9</span>+<span class="number">10</span>));</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.insert_both" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#454-463">source</a><h4 class="code-header">pub fn <a href="#method.insert_both" class="fn">insert_both</a>(&amp;mut self, left: A, right: B) -&gt; (<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut A</a>, <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut B</a>)</h4></section></summary><div class="docblock"><p>Set <code>self</code> to <code>Both(..)</code>, containing the specified left and right values,
and returns a mutable reference to those values.</p>
</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-EitherOrBoth%3CT%3E" class="impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#466-495">source</a><a href="#impl-EitherOrBoth%3CT%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;T, T&gt;</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.reduce" class="method"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#485-494">source</a><h4 class="code-header">pub fn <a href="#method.reduce" class="fn">reduce</a>&lt;F&gt;(self, f: F) -&gt; T<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(T, T) -&gt; T,</div></h4></section></summary><div class="docblock"><p>Return either value of left, right, or apply a function <code>f</code> to both values if both are present.
The input function has to return the same type as both Right and Left carry.</p>
<p>This function can be used to preferrably extract the left resp. right value,
but fall back to the other (i.e. right resp. left) if the preferred one is not present.</p>
<h5 id="examples-6"><a href="#examples-6">Examples</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="macro">assert_eq!</span>(EitherOrBoth::Both(<span class="number">3</span>, <span class="number">7</span>).reduce(u32::max), <span class="number">7</span>);
<span class="macro">assert_eq!</span>(EitherOrBoth::Left(<span class="number">3</span>).reduce(u32::max), <span class="number">3</span>);
<span class="macro">assert_eq!</span>(EitherOrBoth::Right(<span class="number">7</span>).reduce(u32::max), <span class="number">7</span>);
<span class="comment">// Extract the left value if present, fall back to the right otherwise.
</span><span class="macro">assert_eq!</span>(EitherOrBoth::Left(<span class="string">"left"</span>).reduce(|l, _r| l), <span class="string">"left"</span>);
<span class="macro">assert_eq!</span>(EitherOrBoth::Right(<span class="string">"right"</span>).reduce(|l, _r| l), <span class="string">"right"</span>);
<span class="macro">assert_eq!</span>(EitherOrBoth::Both(<span class="string">"left"</span>, <span class="string">"right"</span>).reduce(|l, _r| l), <span class="string">"left"</span>);</code></pre></div>
</div></details></div></details></div><h2 id="trait-implementations" class="section-header">Trait Implementations<a href="#trait-implementations" class="anchor">§</a></h2><div id="trait-implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-Clone-for-EitherOrBoth%3CA,+B%3E" class="impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#impl-Clone-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.clone" class="method trait-impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#method.clone" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/clone/trait.Clone.html#tymethod.clone" class="fn">clone</a>(&amp;self) -&gt; <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;</h4></section></summary><div class='docblock'>Returns a copy of the value. <a href="https://doc.rust-lang.org/1.76.0/core/clone/trait.Clone.html#tymethod.clone">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.clone_from" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.76.0/src/core/clone.rs.html#169">source</a></span><a href="#method.clone_from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/clone/trait.Clone.html#method.clone_from" class="fn">clone_from</a>(&amp;mut self, source: <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;Self</a>)</h4></section></summary><div class='docblock'>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/1.76.0/core/clone/trait.Clone.html#method.clone_from">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Debug-for-EitherOrBoth%3CA,+B%3E" class="impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#impl-Debug-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a>, B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a>&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.fmt" class="method trait-impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#method.fmt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/fmt/trait.Debug.html#tymethod.fmt" class="fn">fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/1.76.0/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>&lt;'_&gt;) -&gt; <a class="type" href="https://doc.rust-lang.org/1.76.0/core/fmt/type.Result.ht
H: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,
Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Feeds a slice of this type into the given <a href="https://doc.rust-lang.org/1.76.0/core/hash/trait.Hasher.html" title="trait core::hash::Hasher"><code>Hasher</code></a>. <a href="https://doc.rust-lang.org/1.76.0/core/hash/trait.Hash.html#method.hash_slice">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-PartialEq-for-EitherOrBoth%3CA,+B%3E" class="impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#impl-PartialEq-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>, B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.eq" class="method trait-impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#method.eq" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/cmp/trait.PartialEq.html#tymethod.eq" class="fn">eq</a>(&amp;self, other: &amp;<a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method tests for <code>self</code> and <code>other</code> values to be equal, and is used
by <code>==</code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.ne" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.76.0/src/core/cmp.rs.html#242">source</a></span><a href="#method.ne" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/cmp/trait.PartialEq.html#method.ne" class="fn">ne</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;Rhs</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method tests for <code>!=</code>. The default implementation is almost always
sufficient, and should not be overridden without very good reason.</div></details></div></details><section id="impl-Eq-for-EitherOrBoth%3CA,+B%3E" class="impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#impl-Eq-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>, B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;</h3></section><section id="impl-StructuralEq-for-EitherOrBoth%3CA,+B%3E" class="impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#impl-StructuralEq-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.StructuralEq.html" title="trait core::marker::StructuralEq">StructuralEq</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;</h3></section><section id="impl-StructuralPartialEq-for-EitherOrBoth%3CA,+B%3E" class="impl"><a class="src rightside" href="../src/itertools/either_or_both.rs.html#8">source</a><a href="#impl-StructuralPartialEq-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.StructuralPartialEq.html" title="trait core::marker::StructuralPartialEq">StructuralPartialEq</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;</h3></section></div><h2 id="synthetic-implementations" class="section-header">Auto Trait Implementations<a href="#synthetic-implementations" class="anchor">§</a></h2><div id="synthetic-implementations-list"><section id="impl-RefUnwindSafe-for-EitherOrBoth%3CA,+B%3E" class="impl"><a href="#impl-RefUnwindSafe-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/panic/unwind_safe/trait.RefUnwindSafe.html" title="trait core::panic::unwind_safe::RefUnwindSafe">RefUnwindSafe</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;<div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/panic/unwind_safe/trait.RefUnwindSafe.html" title="trait core::panic::unwind_safe::RefUnwindSafe">RefUnwindSafe</a>,
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/panic/unwind_safe/trait.RefUnwindSafe.html" title="trait core::panic::unwind_safe::RefUnwindSafe">RefUnwindSafe</a>,</div></h3></section><section id="impl-Send-for-EitherOrBoth%3CA,+B%3E" class="impl"><a href="#impl-Send-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;<div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>,
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>,</div></h3></section><section id="impl-Sync-for-EitherOrBoth%3CA,+B%3E" class="impl"><a href="#impl-Sync-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;<div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a>,
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a>,</div></h3></section><section id="impl-Unpin-for-EitherOrBoth%3CA,+B%3E" class="impl"><a href="#impl-Unpin-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;<div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>,
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>,</div></h3></section><section id="impl-UnwindSafe-for-EitherOrBoth%3CA,+B%3E" class="impl"><a href="#impl-UnwindSafe-for-EitherOrBoth%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/panic/unwind_safe/trait.UnwindSafe.html" title="trait core::panic::unwind_safe::UnwindSafe">UnwindSafe</a> for <a class="enum" href="enum.EitherOrBoth.html" title="enum itertools::EitherOrBoth">EitherOrBoth</a>&lt;A, B&gt;<div class="where">where
A: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/panic/unwind_safe/trait.UnwindSafe.html" title="trait core::panic::unwind_safe::UnwindSafe">UnwindSafe</a>,
B: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/panic/unwind_safe/trait.UnwindSafe.html" title="trait core::panic::unwind_safe::UnwindSafe">UnwindSafe</a>,</div></h3></section></div><h2 id="blanket-implementations" class="section-header">Blanket Implementations<a href="#blanket-implementations" class="anchor">§</a></h2><div id="blanket-implementations-list"><details class="toggle implementors-toggle"><summary><section id="impl-Any-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/any.rs.html#140">source</a><a href="#impl-Any-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/any/trait.Any.html" title="trait core::any::Any">Any</a> for T<div class="where">where
T: 'static + ?<a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.type_id" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/any.rs.html#141">source</a><a href="#method.type_id" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/any/trait.Any.html#tymethod.type_id" class="fn">type_id</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/1.76.0/core/any/struct.TypeId.html" title="struct core::any::TypeId">TypeId</a></h4></section></summary><div class='docblock'>Gets the <code>TypeId</code> of <code>self</code>. <a href="https://doc.rust-lang.org/1.76.0/core/any/trait.Any.html#tymethod.type_id">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Borrow%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/borrow.rs.html#208">source</a><a href="#impl-Borrow%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/borrow/trait.Borrow.html" title="trait core::borrow::Borrow">Borrow</a>&lt;T&gt; for T<div class="where">where
T: ?<a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/borrow.rs.html#210">source</a><a href="#method.borrow" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/borrow/trait.Borrow.html#tymethod.borrow" class="fn">borrow</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;T</a></h4></section></summary><div class='docblock'>Immutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.76.0/core/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-BorrowMut%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/borrow.rs.html#216">source</a><a href="#impl-BorrowMut%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/borrow/trait.BorrowMut.html" title="trait core::borrow::BorrowMut">BorrowMut</a>&lt;T&gt; for T<div class="where">where
T: ?<a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow_mut" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/borrow.rs.html#217">source</a><a href="#method.borrow_mut" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut" class="fn">borrow_mut</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut T</a></h4></section></summary><div class='docblock'>Mutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.76.0/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-From%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/convert/mod.rs.html#763">source</a><a href="#impl-From%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt; for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from-2" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/convert/mod.rs.html#766">source</a><a href="#method.from-2" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(t: T) -&gt; T</h4></section></summary><div class="docblock"><p>Returns the argument unchanged.</p>
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Into%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/convert/mod.rs.html#747-749">source</a><a href="#impl-Into%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/convert/mod.rs.html#756">source</a><a href="#method.into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/convert/trait.Into.html#tymethod.into" class="fn">into</a>(self) -&gt; U</h4></section></summary><div class="docblock"><p>Calls <code>U::from(self)</code>.</p>
<p>That is, this conversion is whatever the implementation of
<code><a href="https://doc.rust-lang.org/1.76.0/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt; for U</code> chooses to do.</p>
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-ToOwned-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/alloc/borrow.rs.html#83-85">source</a><a href="#impl-ToOwned-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/alloc/borrow/trait.ToOwned.html" title="trait alloc::borrow::ToOwned">ToOwned</a> for T<div class="where">where
T: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Owned" class="associatedtype trait-impl"><a href="#associatedtype.Owned" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.76.0/alloc/borrow/trait.ToOwned.html#associatedtype.Owned" class="associatedtype">Owned</a> = T</h4></section></summary><div class='docblock'>The resulting type after obtaining ownership.</div></details><details class="toggle method-toggle" open><summary><section id="method.to_owned" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/alloc/borrow.rs.html#88">source</a><a href="#method.to_owned" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/alloc/borrow/trait.ToOwned.html#tymethod.to_owned" class="fn">to_owned</a>(&amp;self) -&gt; T</h4></section></summary><div class='docblock'>Creates owned data from borrowed data, usually by cloning. <a href="https://doc.rust-lang.org/1.76.0/alloc/borrow/trait.ToOwned.html#tymethod.to_owned">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.clone_into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/alloc/borrow.rs.html#92">source</a><a href="#method.clone_into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/alloc/borrow/trait.ToOwned.html#method.clone_into" class="fn">clone_into</a>(&amp;self, target: <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;mut T</a>)</h4></section></summary><div class='docblock'>Uses borrowed data to replace owned data, usually by cloning. <a href="https://doc.rust-lang.org/1.76.0/alloc/borrow/trait.ToOwned.html#method.clone_into">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryFrom%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/convert/mod.rs.html#803-805">source</a><a href="#impl-TryFrom%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error" class="associatedtype trait-impl"><a href="#associatedtype.Error" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html#associatedtype.Error" class="associatedtype">Error</a> = <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/convert/enum.Infallible.html" title="enum core::convert::Infallible">Infallible</a></h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_from" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/convert/mod.rs.html#810">source</a><a href="#method.try_from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html#tymethod.try_from" class="fn">try_from</a>(value: U) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;T, &lt;T as <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt;&gt;::<a class="associatedtype" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryInto%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/convert/mod.rs.html#788-790">source</a><a href="#impl-TryInto%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryInto.html" title="trait core::convert::TryInto">TryInto</a>&lt;U&gt; for T<div class="where">where
U: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error-1" class="associatedtype trait-impl"><a href="#associatedtype.Error-1" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryInto.html#associatedtype.Error" class="associatedtype">Error</a> = &lt;U as <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="associatedtype" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a></h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.76.0/src/core/convert/mod.rs.html#795">source</a><a href="#method.try_into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryInto.html#tymethod.try_into" class="fn">try_into</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;U, &lt;U as <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="associatedtype" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details></div></section></div></main></body></html>