Files
google_speech_rs/docs/syn/parse/trait.Parse.html
T
2021-06-27 15:50:04 +00:00

11 lines
255 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="Parsing interface implemented by all types that can be parsed in a default way from a token stream."><meta name="keywords" content="rust, rustlang, rust-lang, Parse"><title>Parse in syn::parse - 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="../../light.css" id="themeStyle"><link rel="stylesheet" type="text/css" href="../../dark.css" disabled ><link rel="stylesheet" type="text/css" href="../../ayu.css" disabled ><script id="default-settings"></script><script src="../../storage.js"></script><script src="../../crates.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="icon" type="image/svg+xml" href="../../favicon.svg">
<link rel="alternate icon" type="image/png" href="../../favicon-16x16.png">
<link rel="alternate icon" type="image/png" href="../../favicon-32x32.png"><style type="text/css">#crate-search{background-image:url("../../down-arrow.svg");}</style></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu" role="button">&#9776;</div><a href='../../syn/index.html'><div class='logo-container rust-logo'><img src='../../rust-logo.png' alt='logo'></div></a><p class="location">Trait Parse</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.parse">parse</a></div><a class="sidebar-title" href="#foreign-impls">Implementations on Foreign Types</a><div class="sidebar-links"><a href="#impl-Parse-for-Box%3CT%3E">Box&lt;T&gt;</a><a href="#impl-Parse-for-Group">Group</a><a href="#impl-Parse-for-Literal">Literal</a><a href="#impl-Parse-for-Option%3CAbi%3E">Option&lt;Abi&gt;</a><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E">Option&lt;BoundLifetimes&gt;</a><a href="#impl-Parse-for-Option%3CLabel%3E">Option&lt;Label&gt;</a><a href="#impl-Parse-for-Option%3CT%3E">Option&lt;T&gt;</a><a href="#impl-Parse-for-Option%3CWhereClause%3E">Option&lt;WhereClause&gt;</a><a href="#impl-Parse-for-Punct">Punct</a><a href="#impl-Parse-for-TokenStream">TokenStream</a><a href="#impl-Parse-for-TokenTree">TokenTree</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class="location"><a href="../index.html">syn</a>::<wbr><a href="index.html">parse</a></p><div id="sidebar-vars" data-name="Parse" data-ty="trait" data-relpath=""></div><script defer src="sidebar-items.js"></script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!" aria-haspopup="menu"><img src="../../brush.svg" width="18" height="18" alt="Pick another theme!"></button><div id="theme-choices" role="menu"></div></div><nav class="sub"><form class="search-form"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" disabled autocomplete="off" spellcheck="false" placeholder="Click or press S to search, ? for more options…" type="search"></div><button type="button" class="help-button">?</button>
<a id="settings-menu" href="../../settings.html"><img src="../../wheel.svg" width="18" height="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class="fqn"><span class="in-band">Trait <a href="../index.html">syn</a>::<wbr><a href="index.html">parse</a>::<wbr><a class="trait" href="">Parse</a><button id="copy-path" onclick="copy_path(this)"></button></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/syn/parse.rs.html#218-220" title="goto source code">[src]</a></span></h1><div class="docblock type-decl"><pre class="rust trait">pub trait Parse: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> {
fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;;
}</pre></div><div class="docblock"><p>Parsing interface implemented by all types that can be parsed in a default
way from a token stream.</p>
<p>Refer to the <a href="index.html">module documentation</a> for details about implementing and using
the <code>Parse</code> trait.</p>
</div><h2 id="required-methods" class="small-section-header">Required methods<a href="#required-methods" class="anchor"></a></h2><div class="methods"><h3 id="tymethod.parse" class="method"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class="srclink" href="../../src/syn/parse.rs.html#219" title="goto source code">[src]</a></h3></div><span class="loading-content">Loading content...</span><h2 id="foreign-impls" class="small-section-header">Implementations on Foreign Types<a href="#foreign-impls" class="anchor"></a></h2><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Option%3CLabel%3E" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../struct.Label.html" title="struct syn::Label">Label</a>&gt;</code><a href="#impl-Parse-for-Option%3CLabel%3E" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2541-2549" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2542-2548" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Option%3CBoundLifetimes%3E" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a>&gt;</code><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#748-756" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-1" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-1" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#749-755" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Option%3CWhereClause%3E" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a>&gt;</code><a href="#impl-Parse-for-Option%3CWhereClause%3E" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#919-927" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-2" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-2" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#920-926" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Option%3CAbi%3E" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../struct.Abi.html" title="struct syn::Abi">Abi</a>&gt;</code><a href="#impl-Parse-for-Option%3CAbi%3E" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#1050-1058" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-3" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-3" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#1051-1057" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Box%3CT%3E" class="impl"><code class="in-band">impl&lt;T:&nbsp;<a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a>&gt; <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</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;T&gt;</code><a href="#impl-Parse-for-Box%3CT%3E" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1063-1067" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-4" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-4" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1064-1066" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Option%3CT%3E" class="impl"><code class="in-band">impl&lt;T:&nbsp;<a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> + <a class="trait" href="../token/trait.Token.html" title="trait syn::token::Token">Token</a>&gt; <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;T&gt;</code><a href="#impl-Parse-for-Option%3CT%3E" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1070-1078" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-5" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-5" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1071-1077" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-TokenStream" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.TokenStream.html" title="struct proc_macro2::TokenStream">TokenStream</a></code><a href="#impl-Parse-for-TokenStream" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1081-1085" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-6" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-6" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1082-1084" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-TokenTree" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../../proc_macro2/enum.TokenTree.html" title="enum proc_macro2::TokenTree">TokenTree</a></code><a href="#impl-Parse-for-TokenTree" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1088-1095" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-7" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-7" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1089-1094" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Group" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Group.html" title="struct proc_macro2::Group">Group</a></code><a href="#impl-Parse-for-Group" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1098-1111" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-8" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-8" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1099-1110" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Punct" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Punct.html" title="struct proc_macro2::Punct">Punct</a></code><a href="#impl-Parse-for-Punct" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1114-1121" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-9" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-9" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1115-1120" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-for-Literal" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Literal.html" title="struct proc_macro2::Literal">Literal</a></code><a href="#impl-Parse-for-Literal" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1124-1131" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-10" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-10" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1125-1130" title="goto source code">[src]</a></h4></div></details><span class="loading-content">Loading content...</span><h2 id="implementors" class="small-section-header">Implementors<a href="#implementors" class="anchor"></a></h2><div class="item-list" id="implementors-list"><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.BinOp.html" title="enum syn::BinOp">BinOp</a></code><a href="#impl-Parse" class="anchor"></a><a class="srclink" href="../../src/syn/op.rs.html#131-163" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-11" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-11" class="anchor"></a><a class="srclink" href="../../src/syn/op.rs.html#138-162" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-1" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Expr.html" title="enum syn::Expr">Expr</a></code><a href="#impl-Parse-1" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1153-1157" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-12" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-12" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1154-1156" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-2" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.FnArg.html" title="enum syn::FnArg">FnArg</a></code><a href="#impl-Parse-2" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1554-1571" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-13" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-13" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1555-1570" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-3" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ForeignItem.html" title="enum syn::ForeignItem">ForeignItem</a></code><a href="#impl-Parse-3" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1735-1816" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-14" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-14" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1736-1815" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-4" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.GenericArgument.html" title="enum syn::GenericArgument">GenericArgument</a></code><a href="#impl-Parse-4" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#227-285" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-15" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-15" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#228-284" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-5" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.GenericParam.html" title="enum syn::GenericParam">GenericParam</a></code><a href="#impl-Parse-5" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#661-685" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-16" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-16" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#662-684" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-6" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ImplItem.html" title="enum syn::ImplItem">ImplItem</a></code><a href="#impl-Parse-6" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2564-2646" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-17" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-17" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2565-2645" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-7" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Item.html" title="enum syn::Item">Item</a></code><a href="#impl-Parse-7" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#992-1169" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-18" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-18" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#993-1168" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-8" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Lit.html" title="enum syn::Lit">Lit</a></code><a href="#impl-Parse-8" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#719-748" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-19" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-19" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#720-747" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-9" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Member.html" title="enum syn::Member">Member</a></code><a href="#impl-Parse-9" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2797-2807" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-20" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-20" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2798-2806" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-10" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Meta.html" title="enum syn::Meta">Meta</a></code><a href="#impl-Parse-10" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#560-565" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-21" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-21" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#561-564" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-11" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.NestedMeta.html" title="enum syn::NestedMeta">NestedMeta</a></code><a href="#impl-Parse-11" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#584-596" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-22" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-22" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#585-595" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-12" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Pat.html" title="enum syn::Pat">Pat</a></code><a href="#impl-Parse-12" class="anchor"></a><a class="srclink" href="../../src/syn/pat.rs.html#322-373" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-23" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-23" class="anchor"></a><a class="srclink" href="../../src/syn/pat.rs.html#323-372" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-13" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.RangeLimits.html" title="enum syn::RangeLimits">RangeLimits</a></code><a href="#impl-Parse-13" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2766-2780" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-24" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-24" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2767-2779" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-14" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ReturnType.html" title="enum syn::ReturnType">ReturnType</a></code><a href="#impl-Parse-14" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#855-859" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-25" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-25" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#856-858" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-15" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Stmt.html" title="enum syn::Stmt">Stmt</a></code><a href="#impl-Parse-15" class="anchor"></a><a class="srclink" href="../../src/syn/stmt.rs.html#148-152" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-26" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-26" class="anchor"></a><a class="srclink" href="../../src/syn/stmt.rs.html#149-151" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-16" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TraitBoundModifier.html" title="enum syn::TraitBoundModifier">TraitBoundModifier</a></code><a href="#impl-Parse-16" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#853-861" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-27" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-27" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#854-860" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-17" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TraitItem.html" title="enum syn::TraitItem">TraitItem</a></code><a href="#impl-Parse-17" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2241-2300" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-28" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-28" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2242-2299" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-18" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::<a class="enum" href="../enum.Type.html" title="enum syn::Type">Type</a></code><a href="#impl-Parse-18" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#346-351" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-29" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-29" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#347-350" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-19" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TypeParamBound.html" title="enum syn::TypeParamBound">TypeParamBound</a></code><a href="#impl-Parse-19" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#813-829" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-30" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-30" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#814-828" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-20" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.UnOp.html" title="enum syn::UnOp">UnOp</a></code><a href="#impl-Parse-20" class="anchor"></a><a class="srclink" href="../../src/syn/op.rs.html#166-179" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-31" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-31" class="anchor"></a><a class="srclink" href="../../src/syn/op.rs.html#167-178" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-21" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.UseTree.html" title="enum syn::UseTree">UseTree</a></code><a href="#impl-Parse-21" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1342-1388" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-32" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;<a class="enum" href="../enum.UseTree.html" title="enum syn::UseTree">UseTree</a>&gt;</code><a href="#method.parse-32" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1343-1387" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-22" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Visibility.html" title="enum syn::Visibility">Visibility</a></code><a href="#impl-Parse-22" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#336-357" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-33" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-33" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#337-356" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-23" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.WherePredicate.html" title="enum syn::WherePredicate">WherePredicate</a></code><a href="#impl-Parse-23" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#930-989" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-34" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-34" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#931-988" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-24" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Abi.html" title="struct syn::Abi">Abi</a></code><a href="#impl-Parse-24" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#1040-1047" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-35" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-35" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#1041-1046" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-25" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.AngleBracketedGenericArguments.html" title="struct syn::AngleBracketedGenericArguments">AngleBracketedGenericArguments</a></code><a href="#impl-Parse-25" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#329-353" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-36" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-36" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#330-352" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-26" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Arm.html" title="struct syn::Arm">Arm</a></code><a href="#impl-Parse-26" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2811-2841" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-37" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;<a class="struct" href="../struct.Arm.html" title="struct syn::Arm">Arm</a>&gt;</code><a href="#method.parse-37" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2812-2840" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-27" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.BareFnArg.html" title="struct syn::BareFnArg">BareFnArg</a></code><a href="#impl-Parse-27" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#966-971" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-38" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-38" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#967-970" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-28" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Binding.html" title="struct syn::Binding">Binding</a></code><a href="#impl-Parse-28" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#401-409" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-39" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-39" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#402-408" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-29" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Block.html" title="struct syn::Block">Block</a></code><a href="#impl-Parse-29" class="anchor"></a><a class="srclink" href="../../src/syn/stmt.rs.html#137-145" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-40" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-40" class="anchor"></a><a class="srclink" href="../../src/syn/stmt.rs.html#138-144" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-30" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a></code><a href="#impl-Parse-30" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#726-745" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-41" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-41" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#727-744" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-31" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ConstParam.html" title="struct syn::ConstParam">ConstParam</a></code><a href="#impl-Parse-31" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#864-885" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-42" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-42" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#865-884" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-32" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Constraint.html" title="struct syn::Constraint">Constraint</a></code><a href="#impl-Parse-32" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#413-421" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-43" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-43" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#414-420" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-33" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.DeriveInput.html" title="struct syn::DeriveInput">DeriveInput</a></code><a href="#impl-Parse-33" class="anchor"></a><a class="srclink" href="../../src/syn/derive.rs.html#96-162" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-44" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-44" class="anchor"></a><a class="srclink" href="../../src/syn/derive.rs.html#97-161" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-34" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprArray.html" title="struct syn::ExprArray">ExprArray</a></code><a href="#impl-Parse-34" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1965-1988" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-45" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-45" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1966-1987" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-35" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAssign.html" title="struct syn::ExprAssign">ExprAssign</a></code><a href="#impl-Parse-35" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-46" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-46" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-36" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAssignOp.html" title="struct syn::ExprAssignOp">ExprAssignOp</a></code><a href="#impl-Parse-36" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-47" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-47" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-37" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAsync.html" title="struct syn::ExprAsync">ExprAsync</a></code><a href="#impl-Parse-37" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2453-2462" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-48" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-48" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2454-2461" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-38" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBinary.html" title="struct syn::ExprBinary">ExprBinary</a></code><a href="#impl-Parse-38" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-49" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-49" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-39" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBlock.html" title="struct syn::ExprBlock">ExprBlock</a></code><a href="#impl-Parse-39" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2724-2740" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-50" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-50" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2725-2739" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-40" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBox.html" title="struct syn::ExprBox">ExprBox</a></code><a href="#impl-Parse-40" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2279-2285" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-51" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-51" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2280-2284" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-41" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBreak.html" title="struct syn::ExprBreak">ExprBreak</a></code><a href="#impl-Parse-41" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2349-2354" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-52" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-52" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2350-2353" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-42" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprCall.html" title="struct syn::ExprCall">ExprCall</a></code><a href="#impl-Parse-42" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-53" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-53" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-43" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprCast.html" title="struct syn::ExprCast">ExprCast</a></code><a href="#impl-Parse-43" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-54" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-54" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-44" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprClosure.html" title="struct syn::ExprClosure">ExprClosure</a></code><a href="#impl-Parse-44" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2325-2330" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-55" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-55" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2326-2329" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-45" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprContinue.html" title="struct syn::ExprContinue">ExprContinue</a></code><a href="#impl-Parse-45" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2553-2561" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-56" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-56" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2554-2560" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-46" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprField.html" title="struct syn::ExprField">ExprField</a></code><a href="#impl-Parse-46" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-57" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-57" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-47" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprForLoop.html" title="struct syn::ExprForLoop">ExprForLoop</a></code><a href="#impl-Parse-47" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2160-2186" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-58" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-58" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2161-2185" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-48" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprIf.html" title="struct syn::ExprIf">ExprIf</a></code><a href="#impl-Parse-48" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2119-2136" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-59" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-59" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2120-2135" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-49" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprIndex.html" title="struct syn::ExprIndex">ExprIndex</a></code><a href="#impl-Parse-49" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-60" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-60" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-50" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLet.html" title="struct syn::ExprLet">ExprLet</a></code><a href="#impl-Parse-50" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2105-2115" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-61" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-61" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2106-2114" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-51" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLit.html" title="struct syn::ExprLit">ExprLit</a></code><a href="#impl-Parse-51" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2052-2059" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-62" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-62" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2053-2058" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-52" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLoop.html" title="struct syn::ExprLoop">ExprLoop</a></code><a href="#impl-Parse-52" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2190-2208" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-63" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-63" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2191-2207" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-53" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMacro.html" title="struct syn::ExprMacro">ExprMacro</a></code><a href="#impl-Parse-53" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1868-1875" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-64" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-64" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1869-1874" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-54" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMatch.html" title="struct syn::ExprMatch">ExprMatch</a></code><a href="#impl-Parse-54" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2212-2235" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-65" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-65" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2213-2234" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-55" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMethodCall.html" title="struct syn::ExprMethodCall">ExprMethodCall</a></code><a href="#impl-Parse-55" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-66" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-66" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-56" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprParen.html" title="struct syn::ExprParen">ExprParen</a></code><a href="#impl-Parse-56" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2073-2077" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-67" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-67" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2074-2076" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-57" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprPath.html" title="struct syn::ExprPath">ExprPath</a></code><a href="#impl-Parse-57" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2783-2794" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-68" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-68" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2784-2793" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-58" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprRange.html" title="struct syn::ExprRange">ExprRange</a></code><a href="#impl-Parse-58" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-69" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-69" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-59" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprReference.html" title="struct syn::ExprReference">ExprReference</a></code><a href="#impl-Parse-59" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2334-2345" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-70" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-70" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2335-2344" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-60" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprRepeat.html" title="struct syn::ExprRepeat">ExprRepeat</a></code><a href="#impl-Parse-60" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1992-2003" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-71" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-71" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1993-2002" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-61" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprReturn.html" title="struct syn::ExprReturn">ExprReturn</a></code><a href="#impl-Parse-61" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2358-2363" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-72" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-72" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2359-2362" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-62" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprStruct.html" title="struct syn::ExprStruct">ExprStruct</a></code><a href="#impl-Parse-62" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2637-2643" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-73" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-73" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2638-2642" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-63" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTry.html" title="struct syn::ExprTry">ExprTry</a></code><a href="#impl-Parse-63" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-74" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-74" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-64" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTryBlock.html" title="struct syn::ExprTryBlock">ExprTryBlock</a></code><a href="#impl-Parse-64" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2367-2375" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-75" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-75" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2368-2374" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-65" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTuple.html" title="struct syn::ExprTuple">ExprTuple</a></code><a href="#impl-Parse-65" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-76" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-76" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-66" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprType.html" title="struct syn::ExprType">ExprType</a></code><a href="#impl-Parse-66" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-77" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-77" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2262-2275" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-67" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprUnary.html" title="struct syn::ExprUnary">ExprUnary</a></code><a href="#impl-Parse-67" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2302-2308" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-78" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-78" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2303-2307" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-68" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprUnsafe.html" title="struct syn::ExprUnsafe">ExprUnsafe</a></code><a href="#impl-Parse-68" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2692-2707" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-79" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-79" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2693-2706" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-69" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprWhile.html" title="struct syn::ExprWhile">ExprWhile</a></code><a href="#impl-Parse-69" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2506-2526" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-80" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-80" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2507-2525" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-70" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprYield.html" title="struct syn::ExprYield">ExprYield</a></code><a href="#impl-Parse-70" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2379-2393" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-81" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-81" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2380-2392" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-71" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldValue.html" title="struct syn::FieldValue">FieldValue</a></code><a href="#impl-Parse-71" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2607-2633" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-82" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-82" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2608-2632" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-72" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldsNamed.html" title="struct syn::FieldsNamed">FieldsNamed</a></code><a href="#impl-Parse-72" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#277-285" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-83" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-83" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#278-284" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-73" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldsUnnamed.html" title="struct syn::FieldsUnnamed">FieldsUnnamed</a></code><a href="#impl-Parse-73" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#288-296" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-84" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-84" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#289-295" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-74" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.File.html" title="struct syn::File">File</a></code><a href="#impl-Parse-74" class="anchor"></a><a class="srclink" href="../../src/syn/file.rs.html#94-108" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-85" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-85" class="anchor"></a><a class="srclink" href="../../src/syn/file.rs.html#95-107" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-75" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemFn.html" title="struct syn::ForeignItemFn">ForeignItemFn</a></code><a href="#impl-Parse-75" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1819-1832" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-86" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-86" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1820-1831" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-76" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemMacro.html" title="struct syn::ForeignItemMacro">ForeignItemMacro</a></code><a href="#impl-Parse-76" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1895-1910" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-87" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-87" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1896-1909" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-77" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemStatic.html" title="struct syn::ForeignItemStatic">ForeignItemStatic</a></code><a href="#impl-Parse-77" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1835-1848" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-88" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-88" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1836-1847" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-78" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemType.html" title="struct syn::ForeignItemType">ForeignItemType</a></code><a href="#impl-Parse-78" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1851-1861" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-89" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-89" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1852-1860" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-79" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Generics.html" title="struct syn::Generics">Generics</a></code><a href="#impl-Parse-79" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#598-658" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-90" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-90" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#599-657" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-80" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Ident.html" title="struct syn::Ident">Ident</a></code><a href="#impl-Parse-80" class="anchor"></a><a class="srclink" href="../../src/syn/ident.rs.html#40-51" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-91" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-91" class="anchor"></a><a class="srclink" href="../../src/syn/ident.rs.html#41-50" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-81" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemConst.html" title="struct syn::ImplItemConst">ImplItemConst</a></code><a href="#impl-Parse-81" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2649-2671" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-92" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-92" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2650-2670" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-82" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemMacro.html" title="struct syn::ImplItemMacro">ImplItemMacro</a></code><a href="#impl-Parse-82" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2766-2781" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-93" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-93" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2767-2780" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-83" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemMethod.html" title="struct syn::ImplItemMethod">ImplItemMethod</a></code><a href="#impl-Parse-83" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2674-2711" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-94" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-94" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2675-2710" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-84" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemType.html" title="struct syn::ImplItemType">ImplItemType</a></code><a href="#impl-Parse-84" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2714-2732" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-95" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-95" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2715-2731" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-85" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Index.html" title="struct syn::Index">Index</a></code><a href="#impl-Parse-85" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2844-2859" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-96" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-96" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2845-2858" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-86" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemConst.html" title="struct syn::ItemConst">ItemConst</a></code><a href="#impl-Parse-86" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1409-1430" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-97" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-97" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1410-1429" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-87" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemEnum.html" title="struct syn::ItemEnum">ItemEnum</a></code><a href="#impl-Parse-87" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2035-2057" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-98" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-98" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2036-2056" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-88" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemExternCrate.html" title="struct syn::ItemExternCrate">ItemExternCrate</a></code><a href="#impl-Parse-88" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1295-1325" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-99" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-99" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1296-1324" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-89" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemFn.html" title="struct syn::ItemFn">ItemFn</a></code><a href="#impl-Parse-89" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1525-1532" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-100" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-100" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1526-1531" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-90" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemForeignMod.html" title="struct syn::ItemForeignMod">ItemForeignMod</a></code><a href="#impl-Parse-90" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1712-1732" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-101" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-101" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1713-1731" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-91" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemImpl.html" title="struct syn::ItemImpl">ItemImpl</a></code><a href="#impl-Parse-91" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2452-2457" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-102" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-102" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2453-2456" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-92" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemMacro2.html" title="struct syn::ItemMacro2">ItemMacro2</a></code><a href="#impl-Parse-92" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1254-1292" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-103" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-103" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1255-1291" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-93" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemMacro.html" title="struct syn::ItemMacro">ItemMacro</a></code><a href="#impl-Parse-93" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1227-1251" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-104" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-104" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1228-1250" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-94" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemMod.html" title="struct syn::ItemMod">ItemMod</a></code><a href="#impl-Parse-94" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1670-1709" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-105" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-105" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1671-1708" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-95" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemStatic.html" title="struct syn::ItemStatic">ItemStatic</a></code><a href="#impl-Parse-95" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1391-1406" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-106" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-106" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1392-1405" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-96" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemStruct.html" title="struct syn::ItemStruct">ItemStruct</a></code><a href="#impl-Parse-96" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2010-2032" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-107" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-107" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2011-2031" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-97" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemTrait.html" title="struct syn::ItemTrait">ItemTrait</a></code><a href="#impl-Parse-97" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2111-2131" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-108" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-108" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2112-2130" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-98" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemTraitAlias.html" title="struct syn::ItemTraitAlias">ItemTraitAlias</a></code><a href="#impl-Parse-98" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2185-2190" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-109" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-109" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2186-2189" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-99" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemType.html" title="struct syn::ItemType">ItemType</a></code><a href="#impl-Parse-99" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1913-1930" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-110" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-110" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1914-1929" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-100" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemUnion.html" title="struct syn::ItemUnion">ItemUnion</a></code><a href="#impl-Parse-100" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2060-2080" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-111" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-111" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2061-2079" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-101" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemUse.html" title="struct syn::ItemUse">ItemUse</a></code><a href="#impl-Parse-101" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1328-1339" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-112" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-112" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1329-1338" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-102" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Label.html" title="struct syn::Label">Label</a></code><a href="#impl-Parse-102" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2530-2537" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-113" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-113" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2531-2536" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-103" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Lifetime.html" title="struct syn::Lifetime">Lifetime</a></code><a href="#impl-Parse-103" class="anchor"></a><a class="srclink" href="../../src/syn/lifetime.rs.html#128-136" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-114" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-114" class="anchor"></a><a class="srclink" href="../../src/syn/lifetime.rs.html#129-135" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-104" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LifetimeDef.html" title="struct syn::LifetimeDef">LifetimeDef</a></code><a href="#impl-Parse-104" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#688-723" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-115" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-115" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#689-722" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-105" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitBool.html" title="struct syn::LitBool">LitBool</a></code><a href="#impl-Parse-105" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#857-865" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-116" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-116" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#858-864" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-106" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitByte.html" title="struct syn::LitByte">LitByte</a></code><a href="#impl-Parse-106" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#813-821" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-117" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-117" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#814-820" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-107" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitByteStr.html" title="struct syn::LitByteStr">LitByteStr</a></code><a href="#impl-Parse-107" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#802-810" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-118" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-118" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#803-809" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-108" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitChar.html" title="struct syn::LitChar">LitChar</a></code><a href="#impl-Parse-108" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#824-832" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-119" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-119" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#825-831" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-109" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitFloat.html" title="struct syn::LitFloat">LitFloat</a></code><a href="#impl-Parse-109" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#846-854" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-120" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-120" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#847-853" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-110" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitInt.html" title="struct syn::LitInt">LitInt</a></code><a href="#impl-Parse-110" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#835-843" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-121" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-121" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#836-842" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-111" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitStr.html" title="struct syn::LitStr">LitStr</a></code><a href="#impl-Parse-111" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#791-799" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-122" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-122" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#792-798" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-112" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::<a class="struct" href="../struct.Macro.html" title="struct syn::Macro">Macro</a></code><a href="#impl-Parse-112" class="anchor"></a><a class="srclink" href="../../src/syn/mac.rs.html#178-192" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-123" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-123" class="anchor"></a><a class="srclink" href="../../src/syn/mac.rs.html#179-191" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-113" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.MetaList.html" title="struct syn::MetaList">MetaList</a></code><a href="#impl-Parse-113" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#568-573" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-124" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-124" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#569-572" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-114" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.MetaNameValue.html" title="struct syn::MetaNameValue">MetaNameValue</a></code><a href="#impl-Parse-114" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#576-581" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-125" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-125" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#577-580" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-115" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ParenthesizedGenericArguments.html" title="struct syn::ParenthesizedGenericArguments">ParenthesizedGenericArguments</a></code><a href="#impl-Parse-115" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#356-365" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-126" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-126" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#357-364" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-116" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Path.html" title="struct syn::Path">Path</a></code><a href="#impl-Parse-116" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#220-224" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-127" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-127" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#221-223" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-117" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.PathSegment.html" title="struct syn::PathSegment">PathSegment</a></code><a href="#impl-Parse-117" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#368-372" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-128" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-128" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#369-371" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-118" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Receiver.html" title="struct syn::Receiver">Receiver</a></code><a href="#impl-Parse-118" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1574-1589" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-129" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-129" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1575-1588" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-119" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Signature.html" title="struct syn::Signature">Signature</a></code><a href="#impl-Parse-119" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1490-1522" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-130" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-130" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1491-1521" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-120" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitBound.html" title="struct syn::TraitBound">TraitBound</a></code><a href="#impl-Parse-120" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#832-850" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-131" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-131" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#833-849" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-121" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemConst.html" title="struct syn::TraitItemConst">TraitItemConst</a></code><a href="#impl-Parse-121" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2303-2330" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-132" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-132" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2304-2329" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-122" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemMacro.html" title="struct syn::TraitItemMacro">TraitItemMacro</a></code><a href="#impl-Parse-122" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2434-2449" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-133" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-133" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2435-2448" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-123" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemMethod.html" title="struct syn::TraitItemMethod">TraitItemMethod</a></code><a href="#impl-Parse-123" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2333-2359" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-134" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-134" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2334-2358" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-124" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemType.html" title="struct syn::TraitItemType">TraitItemType</a></code><a href="#impl-Parse-124" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2362-2402" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-135" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-135" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2363-2401" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-125" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeArray.html" title="struct syn::TypeArray">TypeArray</a></code><a href="#impl-Parse-125" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#655-665" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-136" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-136" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#656-664" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-126" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeBareFn.html" title="struct syn::TypeBareFn">TypeBareFn</a></code><a href="#impl-Parse-126" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#704-709" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-137" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-137" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#705-708" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-127" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeGroup.html" title="struct syn::TypeGroup">TypeGroup</a></code><a href="#impl-Parse-127" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#937-945" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-138" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-138" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#938-944" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-128" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeImplTrait.html" title="struct syn::TypeImplTrait">TypeImplTrait</a></code><a href="#impl-Parse-128" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#915-934" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-139" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-139" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#916-933" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-129" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeInfer.html" title="struct syn::TypeInfer">TypeInfer</a></code><a href="#impl-Parse-129" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#771-777" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-140" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-140" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#772-776" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-130" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeMacro.html" title="struct syn::TypeMacro">TypeMacro</a></code><a href="#impl-Parse-130" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#813-819" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-141" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-141" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#814-818" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-131" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeNever.html" title="struct syn::TypeNever">TypeNever</a></code><a href="#impl-Parse-131" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#762-768" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-142" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-142" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#763-767" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-132" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeParam.html" title="struct syn::TypeParam">TypeParam</a></code><a href="#impl-Parse-132" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#759-810" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-143" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-143" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#760-809" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-133" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeParen.html" title="struct syn::TypeParen">TypeParen</a></code><a href="#impl-Parse-133" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#948-953" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-144" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-144" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#949-952" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-134" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypePath.html" title="struct syn::TypePath">TypePath</a></code><a href="#impl-Parse-134" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#822-834" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-145" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-145" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#823-833" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-135" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypePtr.html" title="struct syn::TypePtr">TypePtr</a></code><a href="#impl-Parse-135" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#668-688" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-146" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-146" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#669-687" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-136" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeReference.html" title="struct syn::TypeReference">TypeReference</a></code><a href="#impl-Parse-136" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#691-701" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-147" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-147" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#692-700" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-137" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeSlice.html" title="struct syn::TypeSlice">TypeSlice</a></code><a href="#impl-Parse-137" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#644-652" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-148" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-148" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#645-651" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-138" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeTraitObject.html" title="struct syn::TypeTraitObject">TypeTraitObject</a></code><a href="#impl-Parse-138" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#862-866" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-149" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-149" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#863-865" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-139" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeTuple.html" title="struct syn::TypeTuple">TypeTuple</a></code><a href="#impl-Parse-139" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#780-810" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-150" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-150" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#781-809" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-140" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Variant.html" title="struct syn::Variant">Variant</a></code><a href="#impl-Parse-140" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#247-274" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-151" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-151" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#248-273" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-141" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a></code><a href="#impl-Parse-141" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#888-916" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-152" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-152" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#889-915" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-142" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Abstract.html" title="struct syn::token::Abstract">Abstract</a></code><a href="#impl-Parse-142" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-153" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-153" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-143" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Add.html" title="struct syn::token::Add">Add</a></code><a href="#impl-Parse-143" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-154" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-154" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-144" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.AddEq.html" title="struct syn::token::AddEq">AddEq</a></code><a href="#impl-Parse-144" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-155" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-155" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-145" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.And.html" title="struct syn::token::And">And</a></code><a href="#impl-Parse-145" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-156" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-156" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-146" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.AndAnd.html" title="struct syn::token::AndAnd">AndAnd</a></code><a href="#impl-Parse-146" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-157" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-157" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-147" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.AndEq.html" title="struct syn::token::AndEq">AndEq</a></code><a href="#impl-Parse-147" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-158" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-158" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-148" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.As.html" title="struct syn::token::As">As</a></code><a href="#impl-Parse-148" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-159" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-159" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-149" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Async.html" title="struct syn::token::Async">Async</a></code><a href="#impl-Parse-149" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-160" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-160" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-150" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.At.html" title="struct syn::token::At">At</a></code><a href="#impl-Parse-150" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-161" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-161" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-151" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Auto.html" title="struct syn::token::Auto">Auto</a></code><a href="#impl-Parse-151" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-162" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-162" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-152" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Await.html" title="struct syn::token::Await">Await</a></code><a href="#impl-Parse-152" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-163" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-163" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-153" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Bang.html" title="struct syn::token::Bang">Bang</a></code><a href="#impl-Parse-153" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-164" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-164" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-154" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Become.html" title="struct syn::token::Become">Become</a></code><a href="#impl-Parse-154" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-165" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-165" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-155" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Box.html" title="struct syn::token::Box">Box</a></code><a href="#impl-Parse-155" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-166" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-166" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-156" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Break.html" title="struct syn::token::Break">Break</a></code><a href="#impl-Parse-156" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-167" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-167" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-157" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Caret.html" title="struct syn::token::Caret">Caret</a></code><a href="#impl-Parse-157" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-168" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-168" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-158" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.CaretEq.html" title="struct syn::token::CaretEq">CaretEq</a></code><a href="#impl-Parse-158" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-169" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-169" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-159" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Colon2.html" title="struct syn::token::Colon2">Colon2</a></code><a href="#impl-Parse-159" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-170" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-170" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-160" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Colon.html" title="struct syn::token::Colon">Colon</a></code><a href="#impl-Parse-160" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-171" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-171" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-161" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Comma.html" title="struct syn::token::Comma">Comma</a></code><a href="#impl-Parse-161" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-172" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-172" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-162" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Const.html" title="struct syn::token::Const">Const</a></code><a href="#impl-Parse-162" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-173" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-173" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-163" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Continue.html" title="struct syn::token::Continue">Continue</a></code><a href="#impl-Parse-163" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-174" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-174" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-164" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Crate.html" title="struct syn::token::Crate">Crate</a></code><a href="#impl-Parse-164" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-175" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-175" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-165" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Default.html" title="struct syn::token::Default">Default</a></code><a href="#impl-Parse-165" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-176" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-176" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-166" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Div.html" title="struct syn::token::Div">Div</a></code><a href="#impl-Parse-166" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-177" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-177" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-167" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DivEq.html" title="struct syn::token::DivEq">DivEq</a></code><a href="#impl-Parse-167" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-178" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-178" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-168" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Do.html" title="struct syn::token::Do">Do</a></code><a href="#impl-Parse-168" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-179" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-179" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-169" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dollar.html" title="struct syn::token::Dollar">Dollar</a></code><a href="#impl-Parse-169" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-180" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-180" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-170" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dot2.html" title="struct syn::token::Dot2">Dot2</a></code><a href="#impl-Parse-170" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-181" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-181" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-171" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dot3.html" title="struct syn::token::Dot3">Dot3</a></code><a href="#impl-Parse-171" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-182" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-182" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-172" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dot.html" title="struct syn::token::Dot">Dot</a></code><a href="#impl-Parse-172" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-183" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-183" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-173" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DotDotEq.html" title="struct syn::token::DotDotEq">DotDotEq</a></code><a href="#impl-Parse-173" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-184" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-184" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-174" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dyn.html" title="struct syn::token::Dyn">Dyn</a></code><a href="#impl-Parse-174" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-185" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-185" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-175" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Else.html" title="struct syn::token::Else">Else</a></code><a href="#impl-Parse-175" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-186" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-186" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-176" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Enum.html" title="struct syn::token::Enum">Enum</a></code><a href="#impl-Parse-176" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-187" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-187" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-177" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Eq.html" title="struct syn::token::Eq">Eq</a></code><a href="#impl-Parse-177" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-188" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-188" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-178" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.EqEq.html" title="struct syn::token::EqEq">EqEq</a></code><a href="#impl-Parse-178" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-189" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-189" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-179" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Extern.html" title="struct syn::token::Extern">Extern</a></code><a href="#impl-Parse-179" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-190" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-190" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-180" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.FatArrow.html" title="struct syn::token::FatArrow">FatArrow</a></code><a href="#impl-Parse-180" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-191" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-191" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-181" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Final.html" title="struct syn::token::Final">Final</a></code><a href="#impl-Parse-181" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-192" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-192" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-182" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Fn.html" title="struct syn::token::Fn">Fn</a></code><a href="#impl-Parse-182" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-193" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-193" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-183" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.For.html" title="struct syn::token::For">For</a></code><a href="#impl-Parse-183" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-194" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-194" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-184" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ge.html" title="struct syn::token::Ge">Ge</a></code><a href="#impl-Parse-184" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-195" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-195" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-185" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Gt.html" title="struct syn::token::Gt">Gt</a></code><a href="#impl-Parse-185" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-196" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-196" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-186" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.If.html" title="struct syn::token::If">If</a></code><a href="#impl-Parse-186" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-197" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-197" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-187" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Impl.html" title="struct syn::token::Impl">Impl</a></code><a href="#impl-Parse-187" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-198" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-198" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-188" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.In.html" title="struct syn::token::In">In</a></code><a href="#impl-Parse-188" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-199" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-199" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-189" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.LArrow.html" title="struct syn::token::LArrow">LArrow</a></code><a href="#impl-Parse-189" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-200" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-200" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-190" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Le.html" title="struct syn::token::Le">Le</a></code><a href="#impl-Parse-190" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-201" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-201" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-191" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Let.html" title="struct syn::token::Let">Let</a></code><a href="#impl-Parse-191" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-202" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-202" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-192" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Loop.html" title="struct syn::token::Loop">Loop</a></code><a href="#impl-Parse-192" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-203" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-203" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-193" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Lt.html" title="struct syn::token::Lt">Lt</a></code><a href="#impl-Parse-193" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-204" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-204" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-194" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Macro.html" title="struct syn::token::Macro">Macro</a></code><a href="#impl-Parse-194" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-205" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-205" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-195" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Match.html" title="struct syn::token::Match">Match</a></code><a href="#impl-Parse-195" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-206" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-206" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-196" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Mod.html" title="struct syn::token::Mod">Mod</a></code><a href="#impl-Parse-196" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-207" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-207" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-197" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Move.html" title="struct syn::token::Move">Move</a></code><a href="#impl-Parse-197" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-208" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-208" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-198" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.MulEq.html" title="struct syn::token::MulEq">MulEq</a></code><a href="#impl-Parse-198" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-209" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-209" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-199" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Mut.html" title="struct syn::token::Mut">Mut</a></code><a href="#impl-Parse-199" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-210" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-210" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-200" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ne.html" title="struct syn::token::Ne">Ne</a></code><a href="#impl-Parse-200" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-211" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-211" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-201" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Or.html" title="struct syn::token::Or">Or</a></code><a href="#impl-Parse-201" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-212" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-212" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-202" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.OrEq.html" title="struct syn::token::OrEq">OrEq</a></code><a href="#impl-Parse-202" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-213" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-213" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-203" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.OrOr.html" title="struct syn::token::OrOr">OrOr</a></code><a href="#impl-Parse-203" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-214" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-214" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-204" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Override.html" title="struct syn::token::Override">Override</a></code><a href="#impl-Parse-204" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-215" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-215" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-205" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Pound.html" title="struct syn::token::Pound">Pound</a></code><a href="#impl-Parse-205" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-216" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-216" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-206" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Priv.html" title="struct syn::token::Priv">Priv</a></code><a href="#impl-Parse-206" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-217" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-217" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-207" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Pub.html" title="struct syn::token::Pub">Pub</a></code><a href="#impl-Parse-207" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-218" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-218" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-208" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Question.html" title="struct syn::token::Question">Question</a></code><a href="#impl-Parse-208" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-219" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-219" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-209" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.RArrow.html" title="struct syn::token::RArrow">RArrow</a></code><a href="#impl-Parse-209" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-220" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-220" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-210" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ref.html" title="struct syn::token::Ref">Ref</a></code><a href="#impl-Parse-210" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-221" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-221" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-211" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Rem.html" title="struct syn::token::Rem">Rem</a></code><a href="#impl-Parse-211" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-222" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-222" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-212" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.RemEq.html" title="struct syn::token::RemEq">RemEq</a></code><a href="#impl-Parse-212" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-223" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-223" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-213" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Return.html" title="struct syn::token::Return">Return</a></code><a href="#impl-Parse-213" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-224" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-224" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-214" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SelfType.html" title="struct syn::token::SelfType">SelfType</a></code><a href="#impl-Parse-214" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-225" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-225" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-215" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SelfValue.html" title="struct syn::token::SelfValue">SelfValue</a></code><a href="#impl-Parse-215" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-226" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-226" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-216" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Semi.html" title="struct syn::token::Semi">Semi</a></code><a href="#impl-Parse-216" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-227" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-227" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-217" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Shl.html" title="struct syn::token::Shl">Shl</a></code><a href="#impl-Parse-217" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-228" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-228" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-218" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.ShlEq.html" title="struct syn::token::ShlEq">ShlEq</a></code><a href="#impl-Parse-218" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-229" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-229" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-219" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Shr.html" title="struct syn::token::Shr">Shr</a></code><a href="#impl-Parse-219" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-230" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-230" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-220" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.ShrEq.html" title="struct syn::token::ShrEq">ShrEq</a></code><a href="#impl-Parse-220" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-231" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-231" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-221" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Star.html" title="struct syn::token::Star">Star</a></code><a href="#impl-Parse-221" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-232" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-232" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-222" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Static.html" title="struct syn::token::Static">Static</a></code><a href="#impl-Parse-222" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-233" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-233" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-223" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Struct.html" title="struct syn::token::Struct">Struct</a></code><a href="#impl-Parse-223" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-234" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-234" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-224" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Sub.html" title="struct syn::token::Sub">Sub</a></code><a href="#impl-Parse-224" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-235" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-235" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-225" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SubEq.html" title="struct syn::token::SubEq">SubEq</a></code><a href="#impl-Parse-225" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-236" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-236" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-226" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Super.html" title="struct syn::token::Super">Super</a></code><a href="#impl-Parse-226" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-237" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-237" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-227" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Tilde.html" title="struct syn::token::Tilde">Tilde</a></code><a href="#impl-Parse-227" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-238" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-238" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-228" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Trait.html" title="struct syn::token::Trait">Trait</a></code><a href="#impl-Parse-228" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-239" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-239" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-229" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Try.html" title="struct syn::token::Try">Try</a></code><a href="#impl-Parse-229" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-240" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-240" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-230" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Type.html" title="struct syn::token::Type">Type</a></code><a href="#impl-Parse-230" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-241" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-241" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-231" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Typeof.html" title="struct syn::token::Typeof">Typeof</a></code><a href="#impl-Parse-231" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-242" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-242" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-232" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Underscore.html" title="struct syn::token::Underscore">Underscore</a></code><a href="#impl-Parse-232" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#570-586" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-243" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-243" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#571-585" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-233" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Union.html" title="struct syn::token::Union">Union</a></code><a href="#impl-Parse-233" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-244" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-244" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-234" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Unsafe.html" title="struct syn::token::Unsafe">Unsafe</a></code><a href="#impl-Parse-234" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-245" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-245" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-235" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Unsized.html" title="struct syn::token::Unsized">Unsized</a></code><a href="#impl-Parse-235" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-246" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-246" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-236" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Use.html" title="struct syn::token::Use">Use</a></code><a href="#impl-Parse-236" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-247" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-247" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-237" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Virtual.html" title="struct syn::token::Virtual">Virtual</a></code><a href="#impl-Parse-237" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-248" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-248" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-238" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Where.html" title="struct syn::token::Where">Where</a></code><a href="#impl-Parse-238" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-249" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-249" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-239" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.While.html" title="struct syn::token::While">While</a></code><a href="#impl-Parse-239" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-250" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-250" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-240" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Yield.html" title="struct syn::token::Yield">Yield</a></code><a href="#impl-Parse-240" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-251" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-251" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h4></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><h3 id="impl-Parse-241" class="impl"><code class="in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="struct.Nothing.html" title="struct syn::parse::Nothing">Nothing</a></code><a href="#impl-Parse-241" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1283-1287" title="goto source code">[src]</a></h3></summary><div class="impl-items"><h4 id="method.parse-252" class="method hidden trait-impl"><code>fn <a href="#tymethod.parse" class="fnname">parse</a>(_input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a href="#method.parse-252" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1284-1286" title="goto source code">[src]</a></h4></div></details></div><span class="loading-content">Loading content...</span><script type="text/javascript" src="../../implementors/syn/parse/trait.Parse.js" async></script></section><section id="search" class="content hidden"></section><div id="rustdoc-vars" data-root-path="../../" data-current-crate="syn" data-search-index-js="../../search-index.js" data-search-js="../../search.js"></div>
<script src="../../main.js"></script></body></html>