<main><divclass="width-limiter"><navclass="sub"><formclass="search-form"><span></span><divid="sidebar-button"tabindex="-1"><ahref="../../winnow/all.html"title="show sidebar"></a></div><inputclass="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"><divid="help-button"tabindex="-1"><ahref="../../help.html"title="help">?</a></div><divid="settings-menu"tabindex="-1"><ahref="../../settings.html"title="settings"><imgwidth="22"height="22"alt="Change settings"src="../../static.files/wheel-7b819b6101059cd0.svg"></a></div></form></nav><sectionid="main-content"class="content"><divclass="main-heading"><h1>Trait <ahref="../index.html">winnow</a>::<wbr><ahref="index.html">combinator</a>::<wbr><aclass="trait"href="#">Alt</a><buttonid="copy-path"title="Copy item path to clipboard"><imgsrc="../../static.files/clipboard-7571035ce49a181d.svg"width="19"height="18"alt="Copy item path"></button></h1><spanclass="out-of-band"><aclass="src"href="../../src/winnow/combinator/branch.rs.html#12-15">source</a> · <buttonid="toggle-all-docs"title="collapse all docs">[<span>−</span>]</button></span></div><preclass="rust item-decl"><code>pub trait Alt<I, O, E> {
}</code></pre><detailsclass="toggle top-doc"open><summaryclass="hideme"><span>Expand description</span></summary><divclass="docblock"><p>Helper trait for the <ahref="fn.alt.html"title="fn winnow::combinator::alt">alt()</a> combinator.</p>
<p>This trait is implemented for tuples of up to 21 elements</p>
</div></details><h2id="required-methods"class="section-header">Required Methods<ahref="#required-methods"class="anchor">§</a></h2><divclass="methods"><detailsclass="toggle method-toggle"open><summary><sectionid="tymethod.choice"class="method"><aclass="src rightside"href="../../src/winnow/combinator/branch.rs.html#14">source</a><h4class="code-header">fn <ahref="#tymethod.choice"class="fn">choice</a>(&mut self, input: <aclass="primitive"href="https://doc.rust-lang.org/1.77.1/std/primitive.reference.html">&mut I</a>) -><aclass="type"href="../error/type.PResult.html"title="type winnow::error::PResult">PResult</a><O, E></h4></section></summary><divclass="docblock"><p>Tests each parser in the tuple and returns the result of the first one that succeeds</p>