mentat/docs/apis/rust/combine/trait.Parser.html
2018-06-22 12:08:32 +01:00

485 lines
No EOL
580 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `Parser` trait in crate `combine`.">
<meta name="keywords" content="rust, rustlang, rust-lang, Parser">
<title>combine::Parser - Rust</title>
<link rel="stylesheet" type="text/css" href="../normalize.css">
<link rel="stylesheet" type="text/css" href="../rustdoc.css"
id="mainThemeStyle">
<link rel="stylesheet" type="text/css" href="../dark.css">
<link rel="stylesheet" type="text/css" href="../light.css" id="themeStyle">
<script src="../storage.js"></script>
</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>
<p class='location'>Trait Parser</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.Input">Input</a><a href="#associatedtype.Output">Output</a></div><a class="sidebar-title" href="#provided-methods">Provided Methods</a><div class="sidebar-links"><a href="#method.parse">parse</a><a href="#method.parse_stream">parse_stream</a><a href="#method.parse_stream_consumed">parse_stream_consumed</a><a href="#method.parse_lazy">parse_lazy</a><a href="#method.add_error">add_error</a><a href="#method.by_ref">by_ref</a><a href="#method.with">with</a><a href="#method.skip">skip</a><a href="#method.and">and</a><a href="#method.or">or</a><a href="#method.then">then</a><a href="#method.map">map</a><a href="#method.flat_map">flat_map</a><a href="#method.message">message</a><a href="#method.expected">expected</a><a href="#method.and_then">and_then</a><a href="#method.iter">iter</a><a href="#method.boxed">boxed</a></div><a class="sidebar-title" href="#foreign-impls">Implementations on Foreign Types</a><div class="sidebar-links"><a href="#impl-Parser">&amp;&#39;a mut P</a><a href="#impl-Parser">Box&lt;P&gt;</a><a href="#impl-Parser">FnMut(I) -&gt; ParseResult&lt;O, I&gt; + &#39;a</a><a href="#impl-Parser">fn(_: I) -&gt; ParseResult&lt;O, I&gt;</a><a href="#impl-Parser">(A, B)</a><a href="#impl-Parser">(A, B, C)</a><a href="#impl-Parser">(A, B, C, D)</a><a href="#impl-Parser">(A, B, C, D, E)</a><a href="#impl-Parser">(A, B, C, D, E, F)</a><a href="#impl-Parser">(A, B, C, D, E, F, G)</a><a href="#impl-Parser">(A, B, C, D, E, F, G, H)</a><a href="#impl-Parser">(A, B, C, D, E, F, G, H, I)</a><a href="#impl-Parser">(A, B, C, D, E, F, G, H, I, J)</a><a href="#impl-Parser">(A, B, C, D, E, F, G, H, I, J, K)</a><a href="#impl-Parser">(A, B, C, D, E, F, G, H, I, J, K, L)</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='index.html'>combine</a></p><script>window.sidebarCurrent = {name: 'Parser', 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'>combine</a>::<wbr><a class="trait" href=''>Parser</a></span><span class='out-of-band'><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/combine/primitives.rs.html#1383-1823' title='goto source code'>[src]</a></span></h1><div class="docblock type-decl"><pre class='rust trait'>pub trait Parser {
type <a href='#associatedtype.Input' class="type">Input</a>: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>;
type <a href='#associatedtype.Output' class="type">Output</a>;
fn <a href='#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>&nbsp;&nbsp;&nbsp;&nbsp;) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt; { ... }
<div class='item-spacer'></div> fn <a href='#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>&nbsp;&nbsp;&nbsp;&nbsp;) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt; { ... }
<div class='item-spacer'></div> fn <a href='#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>&nbsp;&nbsp;&nbsp;&nbsp;) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt; { ... }
<div class='item-spacer'></div> fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>&nbsp;&nbsp;&nbsp;&nbsp;) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt; { ... }
<div class='item-spacer'></div> fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, _error: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;) { ... }
<div class='item-spacer'></div> fn <a href='#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a><br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;</span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span>,
{ ... }
<div class='item-spacer'></div> fn <a href='#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self<br>&nbsp;&nbsp;&nbsp;&nbsp;) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt;<br>&nbsp;&nbsp;&nbsp; <span class="where">where<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a</span>,
{ ... }
}</pre></div><div class='docblock'><p>By implementing the <code>Parser</code> trait a type says that it can be used to parse an input stream
into the type <code>Output</code>.</p>
<p>All methods have a default implementation but there needs to be at least an implementation of
<a href="trait.Parser.html#method.parse_stream"><code>parse_stream</code></a>, <a href="trait.Parser.html#method.parse_stream_consumed"><code>parse_stream_consumed</code></a>, or <a href="trait.Parser.html#method.parse_lazy"><code>parse_lazy</code></a>. If the last is implemented, an
implementation of <a href="trait.Parser.html#method.add_error"><code>add_error</code></a> may also be required. See the documentation for
<a href="trait.Parser.html#method.parse_lazy"><code>parse_lazy</code></a> for details.</p>
</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.Input' class='method'><span id='Input.t' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a>: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a></code></span></h3><div class='docblock'><p>The type which is taken as input for the parser. The type must implement the <code>Stream</code> trait
which allows the parser to read items from the type.</p>
</div><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 type which is returned if the parser is successful.</p>
</div></div>
<h2 id='provided-methods' class='small-section-header'>
Provided Methods<a href='#provided-methods' class='anchor'></a>
</h2>
<div class='methods'>
<h3 id='method.parse' class='method'><span id='parse.v' class='invisible'><code>fn <a href='#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></h3><div class='docblock'><p>Entry point of the parser. Takes some input and tries to parse it.</p>
<p>Returns the parsed result and the remaining input if the parser succeeds, or a
<a href="struct.ParseError.html"><code>ParseError</code></a> otherwise.</p>
</div><h3 id='method.parse_stream' class='method'><span id='parse_stream.v' class='invisible'><code>fn <a href='#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></h3><div class='docblock'><p>Parses using the stream <code>input</code> by calling <a href="trait.StreamOnce.html#tymethod.uncons"><code>Stream::uncons</code></a> one or more times.</p>
<p>On success returns <code>Ok((value, new_state))</code>, and on failure returns <code>Err(error)</code>.
Furthermore <code>new_state</code> and <code>error</code> are wrapped in <a href="enum.Consumed.html"><code>Consumed</code></a>, providing information on
whether this parser consumed any input data or not.</p>
</div><h3 id='method.parse_stream_consumed' class='method'><span id='parse_stream_consumed.v' class='invisible'><code>fn <a href='#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></h3><div class='docblock'><p>Parses using the stream <code>input</code> by calling <a href="trait.StreamOnce.html#tymethod.uncons"><code>Stream::uncons</code></a> one or more times.</p>
<p>Semantically equivalent to <a href="trait.Parser.html#method.parse_stream"><code>parse_stream</code></a>, except this method returns a flattened result
type, combining <code>Result</code> and <a href="enum.Consumed.html"><code>Consumed</code></a> into a single <a href="enum.FastResult.html"><code>FastResult</code></a>.</p>
</div><h3 id='method.parse_lazy' class='method'><span id='parse_lazy.v' class='invisible'><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></h3><div class='docblock'><p>Parses using the stream <code>input</code> by calling <a href="trait.StreamOnce.html#tymethod.uncons"><code>Stream::uncons</code></a> one or more times.</p>
<p>Specialized version of <a href="trait.Parser.html#method.parse_stream_consumed"><code>parse_stream_consumed</code></a> which permits error value creation to be
skipped in the common case.</p>
<p>When this parser returns <code>EmptyErr</code>, this method is allowed to return an empty
<a href="struct.ParseError.html"><code>ParseError</code></a>. The error value that would have been returned can instead be obtained by
calling <a href="trait.Parser.html#method.add_error"><code>add_error</code></a>. This allows a parent parser such as <code>choice</code> to skip the creation of
an unnecessary error value, if an alternative parser succeeds.</p>
<p>External callers should never have to call this function directly.</p>
<p>Parsers should seek to implement this function instead of the above two, if errors can be
encountered before consuming input. The default implementation always returns all errors,
with <a href="trait.Parser.html#method.add_error"><code>add_error</code></a> being a no-op.</p>
</div><h3 id='method.add_error' class='method'><span id='add_error.v' class='invisible'><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, _error: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></h3><div class='docblock'><p>Adds the first error that would normally be returned by this parser if it failed with an
<code>EmptyErr</code> result.</p>
<p>See <a href="trait.Parser.html#method.parse_lazy"><code>parse_lazy</code></a> for details.</p>
</div><h3 id='method.by_ref' class='method'><span id='by_ref.v' class='invisible'><code>fn <a href='#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></h3><div class='docblock'><p>Borrows a parser instead of consuming it.</p>
<p>Used to apply parser combinators on <code>self</code> without losing ownership.</p>
<pre class="rust rust-example-rendered">
<span class="kw">fn</span> <span class="ident">test</span>() <span class="op">-&gt;</span> <span class="ident">ParseResult</span><span class="op">&lt;</span>(<span class="ident">char</span>, <span class="ident">char</span>), <span class="kw-2">&amp;</span><span class="lifetime">&#39;static</span> <span class="ident">str</span><span class="op">&gt;</span> {
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">digit</span>();
<span class="kw">let</span> ((<span class="ident">d</span>, <span class="kw">_</span>), <span class="ident">input</span>) <span class="op">=</span> <span class="macro">try</span><span class="macro">!</span>((<span class="ident">p</span>.<span class="ident">by_ref</span>(), <span class="ident">letter</span>()).<span class="ident">parse_stream</span>(<span class="string">&quot;1a23&quot;</span>));
<span class="kw">let</span> (<span class="ident">d2</span>, <span class="ident">input</span>) <span class="op">=</span> <span class="macro">try</span><span class="macro">!</span>(<span class="ident">input</span>.<span class="ident">combine</span>(<span class="op">|</span><span class="ident">input</span><span class="op">|</span> <span class="ident">p</span>.<span class="ident">parse_stream</span>(<span class="ident">input</span>)));
<span class="prelude-val">Ok</span>(((<span class="ident">d</span>, <span class="ident">d2</span>), <span class="ident">input</span>))
}
<span class="kw">fn</span> <span class="ident">main</span>() {
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">test</span>(), <span class="prelude-val">Ok</span>(((<span class="string">&#39;1&#39;</span>, <span class="string">&#39;2&#39;</span>), <span class="ident">Consumed</span>::<span class="ident">Consumed</span>(<span class="string">&quot;3&quot;</span>))));
}</pre>
</div><h3 id='method.with' class='method'><span id='with.v' class='invisible'><code>fn <a href='#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Discards the value of the <code>self</code> parser and returns the value of <code>p</code>.
Fails if any of the parsers fails.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">digit</span>()
.<span class="ident">with</span>(<span class="ident">token</span>(<span class="string">&#39;i&#39;</span>))
.<span class="ident">parse</span>(<span class="string">&quot;9i&quot;</span>)
.<span class="ident">map</span>(<span class="op">|</span><span class="ident">x</span><span class="op">|</span> <span class="ident">x</span>.<span class="number">0</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>(<span class="string">&#39;i&#39;</span>));</pre>
</div><h3 id='method.skip' class='method'><span id='skip.v' class='invisible'><code>fn <a href='#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Discards the value of the <code>p</code> parser and returns the value of <code>self</code>.
Fails if any of the parsers fails.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">digit</span>()
.<span class="ident">skip</span>(<span class="ident">token</span>(<span class="string">&#39;i&#39;</span>))
.<span class="ident">parse</span>(<span class="string">&quot;9i&quot;</span>)
.<span class="ident">map</span>(<span class="op">|</span><span class="ident">x</span><span class="op">|</span> <span class="ident">x</span>.<span class="number">0</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>(<span class="string">&#39;9&#39;</span>));</pre>
</div><h3 id='method.and' class='method'><span id='and.v' class='invisible'><code>fn <a href='#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Parses with <code>self</code> followed by <code>p</code>.
Succeeds if both parsers succeed, otherwise fails.
Returns a tuple with both values on success.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">digit</span>()
.<span class="ident">and</span>(<span class="ident">token</span>(<span class="string">&#39;i&#39;</span>))
.<span class="ident">parse</span>(<span class="string">&quot;9i&quot;</span>)
.<span class="ident">map</span>(<span class="op">|</span><span class="ident">x</span><span class="op">|</span> <span class="ident">x</span>.<span class="number">0</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>((<span class="string">&#39;9&#39;</span>, <span class="string">&#39;i&#39;</span>)));</pre>
</div><h3 id='method.or' class='method'><span id='or.v' class='invisible'><code>fn <a href='#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Returns a parser which attempts to parse using <code>self</code>. If <code>self</code> fails without consuming
any input it tries to consume the same input using <code>p</code>.</p>
<p>If you are looking to chain 3 or more parsers using <code>or</code> you may consider using the
<a href="../macro.choice.html"><code>choice!</code></a> macro instead, which can be clearer and may result in a faster parser.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">parser</span> <span class="op">=</span> <span class="ident">string</span>(<span class="string">&quot;let&quot;</span>)
.<span class="ident">or</span>(<span class="ident">digit</span>().<span class="ident">map</span>(<span class="op">|</span><span class="kw">_</span><span class="op">|</span> <span class="string">&quot;digit&quot;</span>))
.<span class="ident">or</span>(<span class="ident">string</span>(<span class="string">&quot;led&quot;</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">parser</span>.<span class="ident">parse</span>(<span class="string">&quot;let&quot;</span>), <span class="prelude-val">Ok</span>((<span class="string">&quot;let&quot;</span>, <span class="string">&quot;&quot;</span>)));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">parser</span>.<span class="ident">parse</span>(<span class="string">&quot;1&quot;</span>), <span class="prelude-val">Ok</span>((<span class="string">&quot;digit&quot;</span>, <span class="string">&quot;&quot;</span>)));
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">parser</span>.<span class="ident">parse</span>(<span class="string">&quot;led&quot;</span>).<span class="ident">is_err</span>());
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">parser2</span> <span class="op">=</span> <span class="ident">string</span>(<span class="string">&quot;two&quot;</span>).<span class="ident">or</span>(<span class="ident">string</span>(<span class="string">&quot;three&quot;</span>));
<span class="comment">// Fails as the parser for &quot;two&quot; consumes the first &#39;t&#39; before failing</span>
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">parser2</span>.<span class="ident">parse</span>(<span class="string">&quot;three&quot;</span>).<span class="ident">is_err</span>());
<span class="comment">// Use &#39;try&#39; to make failing parsers always act as if they have not consumed any input</span>
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">parser3</span> <span class="op">=</span> <span class="ident">try</span>(<span class="ident">string</span>(<span class="string">&quot;two&quot;</span>)).<span class="ident">or</span>(<span class="ident">try</span>(<span class="ident">string</span>(<span class="string">&quot;three&quot;</span>)));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">parser3</span>.<span class="ident">parse</span>(<span class="string">&quot;three&quot;</span>), <span class="prelude-val">Ok</span>((<span class="string">&quot;three&quot;</span>, <span class="string">&quot;&quot;</span>)));</pre>
</div><h3 id='method.then' class='method'><span id='then.v' class='invisible'><code>fn <a href='#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Parses using <code>self</code> and then passes the value to <code>f</code> which returns a parser used to parse
the rest of the input.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">digit</span>()
.<span class="ident">then</span>(<span class="op">|</span><span class="ident">d</span><span class="op">|</span> <span class="ident">parser</span>(<span class="kw">move</span> <span class="op">|</span><span class="ident">input</span><span class="op">|</span> {
<span class="comment">// Force input to be a &amp;str</span>
<span class="kw">let</span> <span class="kw">_</span>: <span class="kw-2">&amp;</span><span class="ident">str</span> <span class="op">=</span> <span class="ident">input</span>;
<span class="kw">if</span> <span class="ident">d</span> <span class="op">==</span> <span class="string">&#39;9&#39;</span> {
<span class="prelude-val">Ok</span>((<span class="number">9</span>, <span class="ident">Consumed</span>::<span class="ident">Empty</span>(<span class="ident">input</span>)))
}
<span class="kw">else</span> {
<span class="kw">let</span> <span class="ident">position</span> <span class="op">=</span> <span class="ident">input</span>.<span class="ident">position</span>();
<span class="kw">let</span> <span class="ident">err</span> <span class="op">=</span> <span class="ident">ParseError</span>::<span class="ident">new</span>(<span class="ident">position</span>, <span class="ident">Error</span>::<span class="ident">Message</span>(<span class="string">&quot;Not a nine&quot;</span>.<span class="ident">into</span>()));
<span class="prelude-val">Err</span>((<span class="ident">Consumed</span>::<span class="ident">Empty</span>(<span class="ident">err</span>)))
}
}))
.<span class="ident">parse</span>(<span class="string">&quot;9&quot;</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>((<span class="number">9</span>, <span class="string">&quot;&quot;</span>)));</pre>
</div><h3 id='method.map' class='method'><span id='map.v' class='invisible'><code>fn <a href='#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></h3><div class='docblock'><p>Uses <code>f</code> to map over the parsed value.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">digit</span>()
.<span class="ident">map</span>(<span class="op">|</span><span class="ident">c</span><span class="op">|</span> <span class="ident">c</span> <span class="op">==</span> <span class="string">&#39;9&#39;</span>)
.<span class="ident">parse</span>(<span class="string">&quot;9&quot;</span>)
.<span class="ident">map</span>(<span class="op">|</span><span class="ident">x</span><span class="op">|</span> <span class="ident">x</span>.<span class="number">0</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>(<span class="bool-val">true</span>));</pre>
</div><h3 id='method.flat_map' class='method'><span id='flat_map.v' class='invisible'><code>fn <a href='#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Uses <code>f</code> to map over the output of <code>self</code>. If <code>f</code> returns an error the parser fails.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">take</span>(<span class="number">4</span>)
.<span class="ident">flat_map</span>(<span class="op">|</span><span class="ident">bs</span><span class="op">|</span> <span class="ident">many</span>(<span class="ident">digit</span>()).<span class="ident">parse</span>(<span class="ident">bs</span>).<span class="ident">map</span>(<span class="op">|</span><span class="ident">t</span><span class="op">|</span> <span class="ident">t</span>.<span class="number">0</span>))
.<span class="ident">parse</span>(<span class="string">&quot;12abcd&quot;</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>((<span class="ident">String</span>::<span class="ident">from</span>(<span class="string">&quot;12&quot;</span>), <span class="string">&quot;cd&quot;</span>)));</pre>
</div><h3 id='method.message' class='method'><span id='message.v' class='invisible'><code>fn <a href='#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Parses with <code>self</code> and if it fails, adds the message <code>msg</code> to the error.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">token</span>(<span class="string">&#39;9&#39;</span>)
.<span class="ident">message</span>(<span class="string">&quot;Not a nine&quot;</span>)
.<span class="ident">parse</span>(<span class="ident">State</span>::<span class="ident">new</span>(<span class="string">&quot;8&quot;</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Err</span>(<span class="ident">ParseError</span> {
<span class="ident">position</span>: <span class="op">&lt;</span><span class="ident">char</span> <span class="kw">as</span> <span class="ident">Positioner</span><span class="op">&gt;</span>::<span class="ident">start</span>(),
<span class="ident">errors</span>: <span class="macro">vec</span><span class="macro">!</span>[
<span class="ident">Error</span>::<span class="ident">Unexpected</span>(<span class="string">&#39;8&#39;</span>.<span class="ident">into</span>()),
<span class="ident">Error</span>::<span class="ident">Expected</span>(<span class="string">&#39;9&#39;</span>.<span class="ident">into</span>()),
<span class="ident">Error</span>::<span class="ident">Message</span>(<span class="string">&quot;Not a nine&quot;</span>.<span class="ident">into</span>())
]
}));</pre>
</div><h3 id='method.expected' class='method'><span id='expected.v' class='invisible'><code>fn <a href='#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Parses with <code>self</code> and if it fails without consuming any input any expected errors are
replaced by <code>msg</code>. <code>msg</code> is then used in error messages as &quot;Expected <code>msg</code>&quot;.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">token</span>(<span class="string">&#39;9&#39;</span>)
.<span class="ident">expected</span>(<span class="string">&quot;nine&quot;</span>)
.<span class="ident">parse</span>(<span class="ident">State</span>::<span class="ident">new</span>(<span class="string">&quot;8&quot;</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Err</span>(<span class="ident">ParseError</span> {
<span class="ident">position</span>: <span class="op">&lt;</span><span class="ident">char</span> <span class="kw">as</span> <span class="ident">Positioner</span><span class="op">&gt;</span>::<span class="ident">start</span>(),
<span class="ident">errors</span>: <span class="macro">vec</span><span class="macro">!</span>[<span class="ident">Error</span>::<span class="ident">Unexpected</span>(<span class="string">&#39;8&#39;</span>.<span class="ident">into</span>()), <span class="ident">Error</span>::<span class="ident">Expected</span>(<span class="string">&quot;nine&quot;</span>.<span class="ident">into</span>())]
}));</pre>
</div><h3 id='method.and_then' class='method'><span id='and_then.v' class='invisible'><code>fn <a href='#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></h3><div class='docblock'><p>Parses with <code>self</code> and applies <code>f</code> on the result if <code>self</code> parses successfully.
<code>f</code> may optionally fail with an error which is automatically converted to a <code>ParseError</code>.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">parser</span> <span class="op">=</span> <span class="ident">many1</span>(<span class="ident">digit</span>())
.<span class="ident">and_then</span>(<span class="op">|</span><span class="ident">s</span>: <span class="ident">String</span><span class="op">|</span> <span class="ident">s</span>.<span class="ident">parse</span>::<span class="op">&lt;</span><span class="ident">i32</span><span class="op">&gt;</span>());
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">parser</span>.<span class="ident">parse</span>(<span class="ident">State</span>::<span class="ident">new</span>(<span class="string">&quot;1234&quot;</span>)).<span class="ident">map</span>(<span class="op">|</span>(<span class="ident">x</span>, <span class="ident">state</span>)<span class="op">|</span> (<span class="ident">x</span>, <span class="ident">state</span>.<span class="ident">input</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>((<span class="number">1234</span>, <span class="string">&quot;&quot;</span>)));
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">parser</span>.<span class="ident">parse</span>(<span class="ident">State</span>::<span class="ident">new</span>(<span class="string">&quot;999999999999999999999999&quot;</span>));
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">result</span>.<span class="ident">is_err</span>());
<span class="comment">// Errors are report as if they occured at the start of the parse</span>
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>.<span class="ident">unwrap_err</span>().<span class="ident">position</span>, <span class="ident">SourcePosition</span> { <span class="ident">line</span>: <span class="number">1</span>, <span class="ident">column</span>: <span class="number">1</span> });</pre>
</div><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><h3 id='method.iter' class='method'><span id='iter.v' class='invisible'><code>fn <a href='#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></h3><div class='docblock'><p>Creates an iterator from a parser and a state. Can be used as an alternative to <a href="../combinator/fn.many.html"><code>many</code></a> when
collecting directly into a <code>FromIterator</code> type is not desirable.</p>
<pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">buffer</span> <span class="op">=</span> <span class="ident">String</span>::<span class="ident">new</span>();
<span class="kw">let</span> <span class="ident">number</span> <span class="op">=</span> <span class="ident">parser</span>(<span class="op">|</span><span class="ident">input</span><span class="op">|</span> {
<span class="ident">buffer</span>.<span class="ident">clear</span>();
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">iter</span> <span class="op">=</span> <span class="ident">digit</span>().<span class="ident">iter</span>(<span class="ident">input</span>);
<span class="ident">buffer</span>.<span class="ident">extend</span>(<span class="kw-2">&amp;</span><span class="kw-2">mut</span> <span class="ident">iter</span>);
<span class="kw">let</span> <span class="ident">i</span> <span class="op">=</span> <span class="ident">buffer</span>.<span class="ident">parse</span>::<span class="op">&lt;</span><span class="ident">i32</span><span class="op">&gt;</span>().<span class="ident">unwrap</span>();
<span class="ident">iter</span>.<span class="ident">into_result</span>(<span class="ident">i</span>)
});
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">sep_by</span>(<span class="ident">number</span>, <span class="ident">char</span>(<span class="string">&#39;,&#39;</span>))
.<span class="ident">parse</span>(<span class="string">&quot;123,45,6&quot;</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>((<span class="macro">vec</span><span class="macro">!</span>[<span class="number">123</span>, <span class="number">45</span>, <span class="number">6</span>], <span class="string">&quot;&quot;</span>)));</pre>
</div><h3 id='method.boxed' class='method'><span id='boxed.v' class='invisible'><code>fn <a href='#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></h3><div class='docblock'><p>Turns the parser into a trait object by putting it in a <code>Box</code>. Can be used to easily
return parsers from functions without naming the type.</p>
<pre class="rust rust-example-rendered">
<span class="kw">fn</span> <span class="ident">test</span><span class="op">&lt;</span><span class="lifetime">&#39;input</span>, <span class="ident">F</span><span class="op">&gt;</span>(<span class="ident">c</span>: <span class="ident">char</span>, <span class="ident">f</span>: <span class="ident">F</span>) <span class="op">-&gt;</span> <span class="ident">Box</span><span class="op">&lt;</span><span class="ident">Parser</span><span class="op">&lt;</span><span class="ident">Input</span> <span class="op">=</span> <span class="kw-2">&amp;</span><span class="lifetime">&#39;input</span> <span class="ident">str</span>, <span class="ident">Output</span> <span class="op">=</span> (<span class="ident">char</span>, <span class="ident">char</span>)<span class="op">&gt;&gt;</span>
<span class="kw">where</span> <span class="ident">F</span>: <span class="ident">FnMut</span>(<span class="ident">char</span>) <span class="op">-&gt;</span> <span class="ident">bool</span> <span class="op">+</span> <span class="lifetime">&#39;static</span>
{
(<span class="ident">token</span>(<span class="ident">c</span>), <span class="ident">satisfy</span>(<span class="ident">f</span>)).<span class="ident">boxed</span>()
}
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="ident">test</span>(<span class="string">&#39;a&#39;</span>, <span class="op">|</span><span class="ident">c</span><span class="op">|</span> <span class="ident">c</span> <span class="op">&gt;=</span> <span class="string">&#39;a&#39;</span> <span class="op">&amp;&amp;</span> <span class="ident">c</span> <span class="op">&lt;=</span> <span class="string">&#39;f&#39;</span>)
.<span class="ident">parse</span>(<span class="string">&quot;ac&quot;</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>(((<span class="string">&#39;a&#39;</span>, <span class="string">&#39;c&#39;</span>), <span class="string">&quot;&quot;</span>)));</pre>
</div></div>
<h2 id='foreign-impls' class='small-section-header'>
Implementations on Foreign Types<a href='#foreign-impls' class='anchor'></a>
</h2>
<h3 id='impl-Parser' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;'a, I, O, P:&nbsp;?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a mut </a>P <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = O&gt;,&nbsp;</span></code><a href='#impl-Parser' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1824-1851' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-1' class="type"><span id='Input.t-1' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = I</code></span></h4>
<h4 id='associatedtype.Output-1' class="type"><span id='Output.t-1' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = O</code></span></h4>
<h4 id='method.parse_stream-1' class="method"><span id='parse_stream.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_stream' class='fnname'>parse_stream</a>(&amp;mut self, input: I) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;O, I&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1833-1835' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-1' class="method"><span id='parse_stream_consumed.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(&amp;mut self, input: I) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;O, I&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1838-1840' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_lazy-1' class="method"><span id='parse_lazy.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(&amp;mut self, input: I) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;O, I&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1843-1845' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-1' class="method"><span id='add_error.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, error: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1848-1850' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-1' class="method"><span id='parse.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-1' class="method"><span id='by_ref.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-1' class="method"><span id='with.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-1' class="method"><span id='skip.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-1' class="method"><span id='and.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-1' class="method"><span id='or.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-1' class="method"><span id='then.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-1' class="method"><span id='map.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-1' class="method"><span id='flat_map.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-1' class="method"><span id='message.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-1' class="method"><span id='expected.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-1' class="method"><span id='and_then.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-1' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-1' class="method"><span id='boxed.v-1' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-1' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;I, O, P:&nbsp;?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = O&gt;,&nbsp;</span></code><a href='#impl-Parser-1' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1852-1879' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-2' class="type"><span id='Input.t-2' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = I</code></span></h4>
<h4 id='associatedtype.Output-2' class="type"><span id='Output.t-2' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = O</code></span></h4>
<h4 id='method.parse_stream-2' class="method"><span id='parse_stream.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_stream' class='fnname'>parse_stream</a>(&amp;mut self, input: I) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;O, I&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1861-1863' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-2' class="method"><span id='parse_stream_consumed.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(&amp;mut self, input: I) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;O, I&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1866-1868' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_lazy-2' class="method"><span id='parse_lazy.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(&amp;mut self, input: I) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;O, I&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1871-1873' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-2' class="method"><span id='add_error.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, error: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1876-1878' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-2' class="method"><span id='parse.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-2' class="method"><span id='by_ref.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-2' class="method"><span id='with.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-2' class="method"><span id='skip.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-2' class="method"><span id='and.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-2' class="method"><span id='or.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-2' class="method"><span id='then.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-2' class="method"><span id='map.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-2' class="method"><span id='flat_map.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-2' class="method"><span id='message.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-2' class="method"><span id='expected.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-2' class="method"><span id='and_then.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-2' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-2' class="method"><span id='boxed.v-2' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-2' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;'a, I:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, O&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(I) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;O, I&gt; + 'a</code><a href='#impl-Parser-2' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#1437-1443' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-3' class="type"><span id='Input.t-3' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = I</code></span></h4>
<h4 id='associatedtype.Output-3' class="type"><span id='Output.t-3' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = O</code></span></h4>
<h4 id='method.parse_stream-3' class="method"><span id='parse_stream.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_stream' class='fnname'>parse_stream</a>(&amp;mut self, input: I) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;O, I&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#1440-1442' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-3' class="method"><span id='parse.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-3' class="method"><span id='parse_stream_consumed.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_lazy-3' class="method"><span id='parse_lazy.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1464-1466' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-3' class="method"><span id='add_error.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.add_error' class='fnname'>add_error</a>(&amp;mut self, _error: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1474' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-3' class="method"><span id='by_ref.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-3' class="method"><span id='with.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-3' class="method"><span id='skip.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-3' class="method"><span id='and.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-3' class="method"><span id='or.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-3' class="method"><span id='then.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-3' class="method"><span id='map.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-3' class="method"><span id='flat_map.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-3' class="method"><span id='message.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-3' class="method"><span id='expected.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-3' class="method"><span id='and_then.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-3' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-3' class="method"><span id='boxed.v-3' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-3' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;I, O&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: I) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;O, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,&nbsp;</span></code><a href='#impl-Parser-3' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#1501-1510' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-4' class="type"><span id='Input.t-4' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = I</code></span></h4>
<h4 id='associatedtype.Output-4' class="type"><span id='Output.t-4' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = O</code></span></h4>
<h4 id='method.parse_stream-4' class="method"><span id='parse_stream.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_stream' class='fnname'>parse_stream</a>(&amp;mut self, input: I) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;O, I&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#1507-1509' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-4' class="method"><span id='parse.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-4' class="method"><span id='parse_stream_consumed.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_lazy-4' class="method"><span id='parse_lazy.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1464-1466' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-4' class="method"><span id='add_error.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.add_error' class='fnname'>add_error</a>(&amp;mut self, _error: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1474' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-4' class="method"><span id='by_ref.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-4' class="method"><span id='with.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-4' class="method"><span id='skip.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-4' class="method"><span id='and.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-4' class="method"><span id='or.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-4' class="method"><span id='then.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-4' class="method"><span id='map.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-4' class="method"><span id='flat_map.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-4' class="method"><span id='message.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-4' class="method"><span id='expected.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-4' class="method"><span id='and_then.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-4' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-4' class="method"><span id='boxed.v-4' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-4' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-4' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-5' class="type"><span id='Input.t-5' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-5' class="type"><span id='Output.t-5' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-5' class="method"><span id='parse_lazy.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-5' class="method"><span id='add_error.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-5' class="method"><span id='parse.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-5' class="method"><span id='parse_stream.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-5' class="method"><span id='parse_stream_consumed.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-5' class="method"><span id='by_ref.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-5' class="method"><span id='with.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-5' class="method"><span id='skip.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-5' class="method"><span id='and.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-5' class="method"><span id='or.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-5' class="method"><span id='then.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-5' class="method"><span id='map.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-5' class="method"><span id='flat_map.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-5' class="method"><span id='message.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-5' class="method"><span id='expected.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-5' class="method"><span id='and_then.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-5' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-5' class="method"><span id='boxed.v-5' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-5' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-5' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-6' class="type"><span id='Input.t-6' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-6' class="type"><span id='Output.t-6' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-6' class="method"><span id='parse_lazy.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-6' class="method"><span id='add_error.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-6' class="method"><span id='parse.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-6' class="method"><span id='parse_stream.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-6' class="method"><span id='parse_stream_consumed.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-6' class="method"><span id='by_ref.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-6' class="method"><span id='with.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-6' class="method"><span id='skip.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-6' class="method"><span id='and.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-6' class="method"><span id='or.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-6' class="method"><span id='then.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-6' class="method"><span id='map.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-6' class="method"><span id='flat_map.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-6' class="method"><span id='message.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-6' class="method"><span id='expected.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-6' class="method"><span id='and_then.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-6' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-6' class="method"><span id='boxed.v-6' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-6' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-6' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-7' class="type"><span id='Input.t-7' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-7' class="type"><span id='Output.t-7' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-7' class="method"><span id='parse_lazy.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-7' class="method"><span id='add_error.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-7' class="method"><span id='parse.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-7' class="method"><span id='parse_stream.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-7' class="method"><span id='parse_stream_consumed.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-7' class="method"><span id='by_ref.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-7' class="method"><span id='with.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-7' class="method"><span id='skip.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-7' class="method"><span id='and.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-7' class="method"><span id='or.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-7' class="method"><span id='then.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-7' class="method"><span id='map.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-7' class="method"><span id='flat_map.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-7' class="method"><span id='message.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-7' class="method"><span id='expected.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-7' class="method"><span id='and_then.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-7' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-7' class="method"><span id='boxed.v-7' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-7' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D, E&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D, E<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-7' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-8' class="type"><span id='Input.t-8' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-8' class="type"><span id='Output.t-8' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-8' class="method"><span id='parse_lazy.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-8' class="method"><span id='add_error.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-8' class="method"><span id='parse.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-8' class="method"><span id='parse_stream.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-8' class="method"><span id='parse_stream_consumed.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-8' class="method"><span id='by_ref.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-8' class="method"><span id='with.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-8' class="method"><span id='skip.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-8' class="method"><span id='and.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-8' class="method"><span id='or.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-8' class="method"><span id='then.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-8' class="method"><span id='map.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-8' class="method"><span id='flat_map.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-8' class="method"><span id='message.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-8' class="method"><span id='expected.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-8' class="method"><span id='and_then.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-8' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-8' class="method"><span id='boxed.v-8' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-8' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D, E, F&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D, E, F<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-8' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-9' class="type"><span id='Input.t-9' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-9' class="type"><span id='Output.t-9' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-9' class="method"><span id='parse_lazy.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-9' class="method"><span id='add_error.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-9' class="method"><span id='parse.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-9' class="method"><span id='parse_stream.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-9' class="method"><span id='parse_stream_consumed.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-9' class="method"><span id='by_ref.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-9' class="method"><span id='with.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-9' class="method"><span id='skip.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-9' class="method"><span id='and.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-9' class="method"><span id='or.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-9' class="method"><span id='then.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-9' class="method"><span id='map.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-9' class="method"><span id='flat_map.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-9' class="method"><span id='message.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-9' class="method"><span id='expected.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-9' class="method"><span id='and_then.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-9' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-9' class="method"><span id='boxed.v-9' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-9' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D, E, F, G&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D, E, F, G<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;G: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-9' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-10' class="type"><span id='Input.t-10' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-10' class="type"><span id='Output.t-10' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-10' class="method"><span id='parse_lazy.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-10' class="method"><span id='add_error.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-10' class="method"><span id='parse.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-10' class="method"><span id='parse_stream.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-10' class="method"><span id='parse_stream_consumed.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-10' class="method"><span id='by_ref.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-10' class="method"><span id='with.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-10' class="method"><span id='skip.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-10' class="method"><span id='and.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-10' class="method"><span id='or.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-10' class="method"><span id='then.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-10' class="method"><span id='map.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-10' class="method"><span id='flat_map.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-10' class="method"><span id='message.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-10' class="method"><span id='expected.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-10' class="method"><span id='and_then.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-10' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-10' class="method"><span id='boxed.v-10' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-10' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D, E, F, G, H&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D, E, F, G, H<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;G: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;H: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-10' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-11' class="type"><span id='Input.t-11' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-11' class="type"><span id='Output.t-11' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-11' class="method"><span id='parse_lazy.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-11' class="method"><span id='add_error.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-11' class="method"><span id='parse.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-11' class="method"><span id='parse_stream.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-11' class="method"><span id='parse_stream_consumed.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-11' class="method"><span id='by_ref.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-11' class="method"><span id='with.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-11' class="method"><span id='skip.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-11' class="method"><span id='and.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-11' class="method"><span id='or.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-11' class="method"><span id='then.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-11' class="method"><span id='map.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-11' class="method"><span id='flat_map.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-11' class="method"><span id='message.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-11' class="method"><span id='expected.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-11' class="method"><span id='and_then.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-11' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-11' class="method"><span id='boxed.v-11' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-11' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D, E, F, G, H, I&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D, E, F, G, H, I<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;G: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;H: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-11' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-12' class="type"><span id='Input.t-12' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-12' class="type"><span id='Output.t-12' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, I::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-12' class="method"><span id='parse_lazy.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, I::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-12' class="method"><span id='add_error.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-12' class="method"><span id='parse.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-12' class="method"><span id='parse_stream.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-12' class="method"><span id='parse_stream_consumed.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-12' class="method"><span id='by_ref.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-12' class="method"><span id='with.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-12' class="method"><span id='skip.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-12' class="method"><span id='and.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-12' class="method"><span id='or.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-12' class="method"><span id='then.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-12' class="method"><span id='map.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-12' class="method"><span id='flat_map.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-12' class="method"><span id='message.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-12' class="method"><span id='expected.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-12' class="method"><span id='and_then.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-12' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-12' class="method"><span id='boxed.v-12' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-12' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D, E, F, G, H, I, J&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D, E, F, G, H, I, J<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;G: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;H: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;J: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-12' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-13' class="type"><span id='Input.t-13' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-13' class="type"><span id='Output.t-13' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, I::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, J::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-13' class="method"><span id='parse_lazy.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, I::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, J::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-13' class="method"><span id='add_error.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-13' class="method"><span id='parse.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-13' class="method"><span id='parse_stream.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-13' class="method"><span id='parse_stream_consumed.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-13' class="method"><span id='by_ref.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-13' class="method"><span id='with.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-13' class="method"><span id='skip.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-13' class="method"><span id='and.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-13' class="method"><span id='or.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-13' class="method"><span id='then.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-13' class="method"><span id='map.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-13' class="method"><span id='flat_map.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-13' class="method"><span id='message.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-13' class="method"><span id='expected.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-13' class="method"><span id='and_then.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-13' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-13' class="method"><span id='boxed.v-13' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-13' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D, E, F, G, H, I, J, K&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D, E, F, G, H, I, J, K<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;G: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;H: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;J: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;K: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-13' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-14' class="type"><span id='Input.t-14' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-14' class="type"><span id='Output.t-14' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, I::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, J::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, K::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-14' class="method"><span id='parse_lazy.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, I::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, J::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, K::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-14' class="method"><span id='add_error.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-14' class="method"><span id='parse.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-14' class="method"><span id='parse_stream.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-14' class="method"><span id='parse_stream_consumed.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-14' class="method"><span id='by_ref.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-14' class="method"><span id='with.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-14' class="method"><span id='skip.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-14' class="method"><span id='and.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-14' class="method"><span id='or.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-14' class="method"><span id='then.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-14' class="method"><span id='map.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-14' class="method"><span id='flat_map.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-14' class="method"><span id='message.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-14' class="method"><span id='expected.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-14' class="method"><span id='and_then.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-14' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-14' class="method"><span id='boxed.v-14' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span><h3 id='impl-Parser-14' class='impl'><span class='in-band'><table class='table-display'><tbody><tr><td><code>impl&lt;Input:&nbsp;<a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>, A, B, C, D, E, F, G, H, I, J, K, L&gt; <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A, B, C, D, E, F, G, H, I, J, K, L<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Input: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;A: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;G: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;H: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;J: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;K: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;L: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Input&gt;,&nbsp;</span></code><a href='#impl-Parser-14' class='anchor'></a></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2175-2235' title='goto source code'>[src]</a></span></td></tr></tbody></table></h3><span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.Input-15' class="type"><span id='Input.t-15' class='invisible'><code>type <a href='#associatedtype.Input' class="type">Input</a> = Input</code></span></h4>
<h4 id='associatedtype.Output-15' class="type"><span id='Output.t-15' class='invisible'><code>type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, I::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, J::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, K::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, L::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<h4 id='method.parse_lazy-15' class="method"><span id='parse_lazy.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.parse_lazy' class='fnname'>parse_lazy</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Input<br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>A::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, B::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, C::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, D::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, E::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, F::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, G::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, H::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, I::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, J::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, K::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, L::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, Input&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2183-2231' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.add_error-15' class="method"><span id='add_error.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='#method.add_error' class='fnname'>add_error</a>(&amp;mut self, errors: &amp;mut <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;)</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/combinator.rs.html#2232-2234' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse-15' class="method"><span id='parse.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse' class='fnname'>parse</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1396-1404' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream-15' class="method"><span id='parse_stream.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream' class='fnname'>parse_stream</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1415-1417' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.parse_stream_consumed-15' class="method"><span id='parse_stream_consumed.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.parse_stream_consumed' class='fnname'>parse_stream_consumed</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a><br>) -&gt; <a class="type" href="../combine/type.ConsumedResult.html" title="type combine::ConsumedResult">ConsumedResult</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;</code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1429-1441' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.by_ref-15' class="method"><span id='by_ref.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.by_ref' class='fnname'>by_ref</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1496-1501' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.with-15' class="method"><span id='with.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.with' class='fnname'>with</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1518-1524' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.skip-15' class="method"><span id='skip.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.skip' class='fnname'>skip</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1541-1547' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and-15' class="method"><span id='and.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and' class='fnname'>and</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, P2<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1565-1571' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.or-15' class="method"><span id='or.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.or' class='fnname'>or</a>&lt;P2&gt;(self, p: P2) -&gt; <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;Self, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1602-1608' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.then-15' class="method"><span id='then.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.then' class='fnname'>then</a>&lt;N, F&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1636-1643' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.map-15' class="method"><span id='map.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.map' class='fnname'>map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; B,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1659-1665' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.flat_map-15' class="method"><span id='flat_map.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.flat_map' class='fnname'>flat_map</a>&lt;F, B&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1681-1687' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.message-15' class="method"><span id='message.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.message' class='fnname'>message</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1709-1715' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.expected-15' class="method"><span id='expected.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.expected' class='fnname'>expected</a>&lt;S&gt;(self, msg: S) -&gt; <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Info.html" title="enum combine::primitives::Info">Info</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1734-1740' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.and_then-15' class="method"><span id='and_then.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.and_then' class='fnname'>and_then</a>&lt;F, O, E&gt;(self, f: F) -&gt; <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;Self, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1761-1768' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.iter-15' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;P:&nbsp;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html" title="trait core::iter::iterator::Iterator">Iterator</a> for <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;P&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code></div></div><span id='iter.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.iter' class='fnname'>iter</a>(self, input: Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>) -&gt; <a class="struct" href="../combine/combinator/struct.Iter.html" title="struct combine::combinator::Iter">Iter</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1793-1798' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4><h4 id='method.boxed-15' class="method"><span id='boxed.v-15' class='invisible'><table class='table-display'><tbody><tr><td><code>fn <a href='../combine/trait.Parser.html#method.boxed' class='fnname'>boxed</a>&lt;'a&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;self<br>) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;<a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>, Output = Self::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt; + 'a&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'a,&nbsp;</span></code></span></td><td><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/combine/primitives.rs.html#1817-1822' title='goto source code'>[src]</a></td></tr></tbody></table></span></h4></div></span>
<h2 id='implementors' class='small-section-header'>
Implementors<a href='#implementors' class='anchor'></a>
</h2>
<ul class='item-list' id='implementors-list'>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/combinator/struct.Any.html" title="struct combine::combinator::Any">Any</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#38-52' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#99-114' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, P, R&gt; Parser for <a class="struct" href="../combine/combinator/struct.SatisfyMap.html" title="struct combine::combinator::SatisfyMap">SatisfyMap</a>&lt;I, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;R&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = R;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#145-156' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/combinator/struct.Token.html" title="struct combine::combinator::Token">Token</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#204-220' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;C, T, I&gt; Parser for <a class="struct" href="../combine/combinator/struct.Tokens.html" title="struct combine::combinator::Tokens">Tokens</a>&lt;C, T, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(T::<a class="type" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.IntoIterator.html#associatedtype.Item" title="type core::iter::traits::IntoIterator::Item">Item</a>, I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.IntoIterator.html" title="trait core::iter::traits::IntoIterator">IntoIterator</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = T;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#257-308' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/combinator/struct.Position.html" title="struct combine::combinator::Position">Position</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Position" title="type combine::StreamOnce::Position">Position</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#356-367' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, O, S, P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Choice.html" title="struct combine::combinator::Choice">Choice</a>&lt;S, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.AsMut.html" title="trait core::convert::AsMut">AsMut</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">[</a>P<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = O&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = O;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#397-433' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T, I&gt; Parser for <a class="struct" href="../combine/combinator/struct.OneOf.html" title="struct combine::combinator::OneOf">OneOf</a>&lt;T, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.IntoIterator.html" title="trait core::iter::traits::IntoIterator">IntoIterator</a>&lt;Item = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#444-463' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;T, I&gt; Parser for <a class="struct" href="../combine/combinator/struct.NoneOf.html" title="struct combine::combinator::NoneOf">NoneOf</a>&lt;T, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.IntoIterator.html" title="trait core::iter::traits::IntoIterator">IntoIterator</a>&lt;Item = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#499-512' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P, F&gt; Parser for <a class="struct" href="../combine/combinator/struct.Count.html" title="struct combine::combinator::Count">Count</a>&lt;F, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#555-573' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P, F&gt; Parser for <a class="struct" href="../combine/combinator/struct.CountMinMax.html" title="struct combine::combinator::CountMinMax">CountMinMax</a>&lt;F, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#635-659' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/combinator/struct.Unexpected.html" title="struct combine::combinator::Unexpected">Unexpected</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#794-807' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, T&gt; Parser for <a class="struct" href="../combine/combinator/struct.Value.html" title="struct combine::combinator::Value">Value</a>&lt;I, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = T;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#833-844' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/combinator/struct.Eof.html" title="struct combine::combinator::Eof">Eof</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#900-918' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;F, P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Many.html" title="struct combine::combinator::Many">Many</a>&lt;F, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1018-1030' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;F, P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Many1.html" title="struct combine::combinator::Many1">Many1</a>&lt;F, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1061-1083' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P&gt; Parser for <a class="struct" href="../combine/combinator/struct.SkipMany.html" title="struct combine::combinator::SkipMany">SkipMany</a>&lt;P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = &lt;P as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;<a class="struct" href="../combine/combinator/struct.Many.html" title="struct combine::combinator::Many">Many</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>&gt;, <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;P, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>)&gt;&gt;, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>&gt;)&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#12-31' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P&gt; Parser for <a class="struct" href="../combine/combinator/struct.SkipMany1.html" title="struct combine::combinator::SkipMany1">SkipMany1</a>&lt;P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = &lt;P as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;<a class="struct" href="../combine/combinator/struct.Many1.html" title="struct combine::combinator::Many1">Many1</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>&gt;, <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;P, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>)&gt;&gt;, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>&gt;)&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#12-31' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;F, P, S&gt; Parser for <a class="struct" href="../combine/combinator/struct.SepBy.html" title="struct combine::combinator::SepBy">SepBy</a>&lt;F, P, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1167-1188' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;F, P, S&gt; Parser for <a class="struct" href="../combine/combinator/struct.SepBy1.html" title="struct combine::combinator::SepBy1">SepBy1</a>&lt;F, P, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1229-1253' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;F, P, S&gt; Parser for <a class="struct" href="../combine/combinator/struct.SepEndBy.html" title="struct combine::combinator::SepEndBy">SepEndBy</a>&lt;F, P, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1303-1324' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;F, P, S&gt; Parser for <a class="struct" href="../combine/combinator/struct.SepEndBy1.html" title="struct combine::combinator::SepEndBy1">SepEndBy1</a>&lt;F, P, S&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;S: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1366-1394' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, O, F&gt; Parser for <a class="struct" href="../combine/combinator/struct.FnParser.html" title="struct combine::combinator::FnParser">FnParser</a>&lt;I, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(I) -&gt; <a class="type" href="../combine/type.ParseResult.html" title="type combine::ParseResult">ParseResult</a>&lt;O, I&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = O;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1489-1499' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Optional.html" title="struct combine::combinator::Optional">Optional</a>&lt;P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>&gt;;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1514-1529' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;L, R, P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Between.html" title="struct combine::combinator::Between">Between</a>&lt;L, R, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;L: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = &lt;L as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = &lt;L as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = &lt;L as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;<a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;L, P&gt;, R&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#12-31' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, P, Op&gt; Parser for <a class="struct" href="../combine/combinator/struct.Chainl1.html" title="struct combine::combinator::Chainl1">Chainl1</a>&lt;P, Op&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;Op: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;Op::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1581-1613' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, P, Op&gt; Parser for <a class="struct" href="../combine/combinator/struct.Chainr1.html" title="struct combine::combinator::Chainr1">Chainr1</a>&lt;P, Op&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;Op: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;Op::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>, P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1641-1677' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, O, P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Try.html" title="struct combine::combinator::Try">Try</a>&lt;P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = O&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = O;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1705-1716' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, O, P&gt; Parser for <a class="struct" href="../combine/combinator/struct.LookAhead.html" title="struct combine::combinator::LookAhead">LookAhead</a>&lt;P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = O&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = O;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1745-1762' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, P1, P2&gt; Parser for <a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;P1, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P1: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = P2::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1793-1808' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, P1, P2&gt; Parser for <a class="struct" href="../combine/combinator/struct.Skip.html" title="struct combine::combinator::Skip">Skip</a>&lt;P1, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P1: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = P1::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1827-1842' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Message.html" title="struct combine::combinator::Message">Message</a>&lt;P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1860-1889' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, O, P1, P2&gt; Parser for <a class="struct" href="../combine/combinator/struct.Or.html" title="struct combine::combinator::Or">Or</a>&lt;P1, P2&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P1: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = O&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P2: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = O&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = O;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1910-1936' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, A, B, P, F&gt; Parser for <a class="struct" href="../combine/combinator/struct.Map.html" title="struct combine::combinator::Map">Map</a>&lt;P, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = A&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(A) -&gt; B,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = B;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1955-1975' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, A, B, P, F&gt; Parser for <a class="struct" href="../combine/combinator/struct.FlatMap.html" title="struct combine::combinator::FlatMap">FlatMap</a>&lt;P, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = I, Output = A&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(A) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;B, <a class="struct" href="../combine/primitives/struct.ParseError.html" title="struct combine::primitives::ParseError">ParseError</a>&lt;I&gt;&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = B;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#1991-2017' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P, N, F&gt; Parser for <a class="struct" href="../combine/combinator/struct.Then.html" title="struct combine::combinator::Then">Then</a>&lt;P, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; N,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&lt;Input = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = N::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = N::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#2033-2062' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P&gt; Parser for <a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#2084-2113' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P, F, O, E&gt; Parser for <a class="struct" href="../combine/combinator/struct.AndThen.html" title="struct combine::combinator::AndThen">AndThen</a>&lt;P, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;O, E&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;<a class="enum" href="../combine/primitives/enum.Error.html" title="enum combine::primitives::Error">Error</a>&lt;&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>, &lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>&gt;&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = O;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#2131-2158' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;E, I, O&gt; Parser for <a class="struct" href="../combine/combinator/struct.EnvParser.html" title="struct combine::combinator::EnvParser">EnvParser</a>&lt;E, I, O&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;E: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = O;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#2379-2391' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;P, F&gt; Parser for <a class="struct" href="../combine/combinator/struct.Recognize.html" title="struct combine::combinator::Recognize">Recognize</a>&lt;F, P&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;P: <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/trait.FromIterator.html" title="trait core::iter::traits::FromIterator">FromIterator</a>&lt;&lt;P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a> as <a class="trait" href="../combine/trait.StreamOnce.html" title="trait combine::StreamOnce">StreamOnce</a>&gt;::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = P::<a class="type" href="../combine/trait.Parser.html#associatedtype.Input" title="type combine::Parser::Input">Input</a>;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = F;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/combinator.rs.html#2443-2489' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/range/struct.Range.html" title="struct combine::range::Range">Range</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a> + <a class="trait" href="../combine/primitives/trait.Range.html" title="trait combine::primitives::Range">Range</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/range.rs.html#10-35' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/range/struct.Take.html" title="struct combine::range::Take">Take</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>: <a class="trait" href="../combine/primitives/trait.Range.html" title="trait combine::primitives::Range">Range</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/range.rs.html#62-78' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, F&gt; Parser for <a class="struct" href="../combine/range/struct.TakeWhile.html" title="struct combine::range::TakeWhile">TakeWhile</a>&lt;I, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>: <a class="trait" href="../combine/primitives/trait.Range.html" title="trait combine::primitives::Range">Range</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/range.rs.html#107-120' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I, F&gt; Parser for <a class="struct" href="../combine/range/struct.TakeWhile1.html" title="struct combine::range::TakeWhile1">TakeWhile1</a>&lt;I, F&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>: <a class="trait" href="../combine/primitives/trait.Range.html" title="trait combine::primitives::Range">Range</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Item" title="type combine::StreamOnce::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/range.rs.html#146-167' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/range/struct.TakeUntilRange.html" title="struct combine::range::TakeUntilRange">TakeUntilRange</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a> + <a class="trait" href="../combine/primitives/trait.Range.html" title="trait combine::primitives::Range">Range</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = I::<a class="type" href="../combine/trait.StreamOnce.html#associatedtype.Range" title="type combine::StreamOnce::Range">Range</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/range.rs.html#196-238' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, B, I&gt; Parser for <a class="struct" href="../combine/byte/num/struct.U16.html" title="struct combine::byte::num::U16">U16</a>&lt;B, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>&lt;Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../byteorder/trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#383-398' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, B, I&gt; Parser for <a class="struct" href="../combine/byte/num/struct.U32.html" title="struct combine::byte::num::U32">U32</a>&lt;B, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>&lt;Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../byteorder/trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#383-398' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, B, I&gt; Parser for <a class="struct" href="../combine/byte/num/struct.U64.html" title="struct combine::byte::num::U64">U64</a>&lt;B, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>&lt;Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../byteorder/trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#383-398' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, B, I&gt; Parser for <a class="struct" href="../combine/byte/num/struct.I16.html" title="struct combine::byte::num::I16">I16</a>&lt;B, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>&lt;Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../byteorder/trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#383-398' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, B, I&gt; Parser for <a class="struct" href="../combine/byte/num/struct.I32.html" title="struct combine::byte::num::I32">I32</a>&lt;B, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>&lt;Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../byteorder/trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#383-398' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, B, I&gt; Parser for <a class="struct" href="../combine/byte/num/struct.I64.html" title="struct combine::byte::num::I64">I64</a>&lt;B, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>&lt;Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../byteorder/trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#383-398' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, B, I&gt; Parser for <a class="struct" href="../combine/byte/num/struct.F32.html" title="struct combine::byte::num::F32">F32</a>&lt;B, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>&lt;Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../byteorder/trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#383-398' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, B, I&gt; Parser for <a class="struct" href="../combine/byte/num/struct.F64.html" title="struct combine::byte::num::F64">F64</a>&lt;B, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/primitives/trait.RangeStream.html" title="trait combine::primitives::RangeStream">RangeStream</a>&lt;Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: <a class="trait" href="../byteorder/trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#383-398' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.Digit.html" title="struct combine::byte::Digit">Digit</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.Space.html" title="struct combine::byte::Space">Space</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.Spaces.html" title="struct combine::byte::Spaces">Spaces</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.SkipMany.html" title="struct combine::combinator::SkipMany">SkipMany</a>&lt;<a class="struct" href="../combine/byte/struct.Space.html" title="struct combine::byte::Space">Space</a>&lt;I&gt;&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.Newline.html" title="struct combine::byte::Newline">Newline</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.CrLf.html" title="struct combine::byte::CrLf">CrLf</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;, <a class="struct" href="../combine/byte/struct.Newline.html" title="struct combine::byte::Newline">Newline</a>&lt;I&gt;&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.Tab.html" title="struct combine::byte::Tab">Tab</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.Upper.html" title="struct combine::byte::Upper">Upper</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.Lower.html" title="struct combine::byte::Lower">Lower</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.AlphaNum.html" title="struct combine::byte::AlphaNum">AlphaNum</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.Letter.html" title="struct combine::byte::Letter">Letter</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.OctDigit.html" title="struct combine::byte::OctDigit">OctDigit</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::byte::<a class="struct" href="../combine/byte/struct.HexDigit.html" title="struct combine::byte::HexDigit">HexDigit</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, I&gt; Parser for <a class="struct" href="../combine/byte/struct.Bytes.html" title="struct combine::byte::Bytes">Bytes</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'static [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#272-287' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;'a, C, I&gt; Parser for <a class="struct" href="../combine/byte/struct.BytesCmp.html" title="struct combine::byte::BytesCmp">BytesCmp</a>&lt;C, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, Range = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'a [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;'static [</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">]</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/byte.rs.html#321-337' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.Digit.html" title="struct combine::char::Digit">Digit</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#428-449' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.Space.html" title="struct combine::char::Space">Space</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.Spaces.html" title="struct combine::char::Spaces">Spaces</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.SkipMany.html" title="struct combine::combinator::SkipMany">SkipMany</a>&lt;<a class="struct" href="../combine/char/struct.Space.html" title="struct combine::char::Space">Space</a>&lt;I&gt;&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.Newline.html" title="struct combine::char::Newline">Newline</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.CrLf.html" title="struct combine::char::CrLf">CrLf</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.With.html" title="struct combine::combinator::With">With</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;, <a class="struct" href="../combine/char/struct.Newline.html" title="struct combine::char::Newline">Newline</a>&lt;I&gt;&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.Tab.html" title="struct combine::char::Tab">Tab</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.Upper.html" title="struct combine::char::Upper">Upper</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.Lower.html" title="struct combine::char::Lower">Lower</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.AlphaNum.html" title="struct combine::char::AlphaNum">AlphaNum</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.Letter.html" title="struct combine::char::Letter">Letter</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.OctDigit.html" title="struct combine::char::OctDigit">OctDigit</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for combine::char::<a class="struct" href="../combine/char/struct.HexDigit.html" title="struct combine::char::HexDigit">HexDigit</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &lt;<a class="struct" href="../combine/combinator/struct.Expected.html" title="struct combine::combinator::Expected">Expected</a>&lt;<a class="struct" href="../combine/combinator/struct.Satisfy.html" title="struct combine::combinator::Satisfy">Satisfy</a>&lt;I, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.fn.html">fn</a>(_: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>&gt;&gt; as <a class="trait" href="../combine/trait.Parser.html" title="trait combine::Parser">Parser</a>&gt;::<a class="type" href="../combine/trait.Parser.html#associatedtype.Output" title="type combine::Parser::Output">Output</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/lib.rs.html#189-201' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;I&gt; Parser for <a class="struct" href="../combine/char/struct.Str.html" title="struct combine::char::Str">Str</a>&lt;I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &amp;'static <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/char.rs.html#299-314' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
<li><table class='table-display'><tbody><tr><td><code>impl&lt;C, I&gt; Parser for <a class="struct" href="../combine/char/struct.StrCmp.html" title="struct combine::char::StrCmp">StrCmp</a>&lt;C, I&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="../combine/trait.Stream.html" title="trait combine::Stream">Stream</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.char.html">char</a>&gt;,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.Input' class="type">Input</a> = I;</span><span class="where fmt-newline"> type <a href='#associatedtype.Output' class="type">Output</a> = &amp;'static <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>;</span></code><td><div class='out-of-band'><a class='srclink' href='../src/combine/char.rs.html#341-357' title='goto source code'>[src]</a></div></td></tr></tbody></table></li>
</ul><script type="text/javascript">window.inlined_types=new Set([]);</script><script type="text/javascript" async
src="../implementors/combine/trait.Parser.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 = "combine";
</script>
<script src="../main.js"></script>
<script defer src="../search-index.js"></script>
</body>
</html>