blob: 03dc2b7755608cc3b586c99e35633daebd5b9ffb [file] [log] [blame]
<!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="preload" as="font" type="font/woff2" crossorigin href="../../SourceSerif4-Regular.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../FiraSans-Regular.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../FiraSans-Medium.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceCodePro-Regular.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceSerif4-Bold.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceCodePro-Semibold.ttf.woff2"><link rel="stylesheet" href="../../normalize.css"><link rel="stylesheet" href="../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" href="../../ayu.css" disabled><link rel="stylesheet" href="../../dark.css" disabled><link rel="stylesheet" href="../../light.css" id="themeStyle"><script id="default-settings" ></script><script src="../../storage.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../main.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="alternate icon" type="image/png" href="../../favicon-16x16.png"><link rel="alternate icon" type="image/png" href="../../favicon-32x32.png"><link rel="icon" type="image/svg+xml" href="../../favicon.svg"></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="mobile-topbar"><button class="sidebar-menu-toggle">&#9776;</button><a class="sidebar-logo" href="../../syn/index.html"><div class="logo-container"><img class="rust-logo" src="../../rust-logo.svg" alt="logo"></div></a><h2></h2></nav><nav class="sidebar"><a class="sidebar-logo" href="../../syn/index.html"><div class="logo-container"><img class="rust-logo" src="../../rust-logo.svg" alt="logo"></div></a><h2 class="location"><a href="#">Parse</a></h2><div class="sidebar-elems"><section><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.parse">parse</a></li></ul><h3><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul class="block"><li><a href="#impl-Parse-for-Box%3CT%3E">Box&lt;T&gt;</a></li><li><a href="#impl-Parse-for-Group">Group</a></li><li><a href="#impl-Parse-for-Literal">Literal</a></li><li><a href="#impl-Parse-for-Option%3CAbi%3E">Option&lt;Abi&gt;</a></li><li><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E">Option&lt;BoundLifetimes&gt;</a></li><li><a href="#impl-Parse-for-Option%3CLabel%3E">Option&lt;Label&gt;</a></li><li><a href="#impl-Parse-for-Option%3CT%3E">Option&lt;T&gt;</a></li><li><a href="#impl-Parse-for-Option%3CWhereClause%3E">Option&lt;WhereClause&gt;</a></li><li><a href="#impl-Parse-for-Punct">Punct</a></li><li><a href="#impl-Parse-for-TokenStream">TokenStream</a></li><li><a href="#impl-Parse-for-TokenTree">TokenTree</a></li></ul><h3><a href="#implementors">Implementors</a></h3></section><h2><a href="index.html">In syn::parse</a></h2></div></nav><main><div class="width-limiter"><nav class="sub"><form class="search-form"><div class="search-container"><span></span><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"><div id="help-button" title="help" tabindex="-1"><a href="../../help.html">?</a></div><div id="settings-menu" tabindex="-1"><a href="../../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../../wheel.svg"></a></div></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1 class="fqn">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)" title="Copy item path to clipboard"><img src="../../clipboard.svg" width="19" height="18" alt="Copy item path"></button></h1><span class="out-of-band"><a class="srclink" href="../../src/syn/parse.rs.html#213-215">source</a> · <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class="inner">&#x2212;</span>]</a></span></div><div class="item-decl"><pre class="rust trait"><code>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;;
}</code></pre></div><details class="rustdoc-toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><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></details><h2 id="required-methods" class="small-section-header">Required Methods<a href="#required-methods" class="anchor"></a></h2><div class="methods"><section id="tymethod.parse" class="method has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#214">source</a><h4 class="code-header">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;</h4></section></div><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"><summary><section id="impl-Parse-for-Option%3CLabel%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2411-2419">source</a><a href="#impl-Parse-for-Option%3CLabel%3E" class="anchor"></a><h3 class="code-header">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;</h3></section></summary><div class="impl-items"><section id="method.parse" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2412-2418">source</a><a href="#method.parse" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CBoundLifetimes%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#696-704">source</a><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E" class="anchor"></a><h3 class="code-header">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;</h3></section></summary><div class="impl-items"><section id="method.parse-1" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#697-703">source</a><a href="#method.parse-1" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CWhereClause%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#899-907">source</a><a href="#impl-Parse-for-Option%3CWhereClause%3E" class="anchor"></a><h3 class="code-header">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;</h3></section></summary><div class="impl-items"><section id="method.parse-2" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#900-906">source</a><a href="#method.parse-2" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-Box%3CT%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1112-1116">source</a><a href="#impl-Parse-for-Box%3CT%3E" class="anchor"></a><h3 class="code-header">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;</h3></section></summary><div class="impl-items"><section id="method.parse-3" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1113-1115">source</a><a href="#method.parse-3" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CT%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1119-1127">source</a><a href="#impl-Parse-for-Option%3CT%3E" class="anchor"></a><h3 class="code-header">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;</h3></section></summary><div class="impl-items"><section id="method.parse-4" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1120-1126">source</a><a href="#method.parse-4" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-TokenStream" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1130-1134">source</a><a href="#impl-Parse-for-TokenStream" class="anchor"></a><h3 class="code-header">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></h3></section></summary><div class="impl-items"><section id="method.parse-5" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1131-1133">source</a><a href="#method.parse-5" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-TokenTree" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1137-1144">source</a><a href="#impl-Parse-for-TokenTree" class="anchor"></a><h3 class="code-header">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></h3></section></summary><div class="impl-items"><section id="method.parse-6" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1138-1143">source</a><a href="#method.parse-6" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-Group" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1147-1158">source</a><a href="#impl-Parse-for-Group" class="anchor"></a><h3 class="code-header">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></h3></section></summary><div class="impl-items"><section id="method.parse-7" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1148-1157">source</a><a href="#method.parse-7" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-Punct" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1161-1168">source</a><a href="#impl-Parse-for-Punct" class="anchor"></a><h3 class="code-header">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></h3></section></summary><div class="impl-items"><section id="method.parse-8" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1162-1167">source</a><a href="#method.parse-8" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-Literal" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1171-1178">source</a><a href="#impl-Parse-for-Literal" class="anchor"></a><h3 class="code-header">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></h3></section></summary><div class="impl-items"><section id="method.parse-9" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1172-1177">source</a><a href="#method.parse-9" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CAbi%3E" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#983-991">source</a><a href="#impl-Parse-for-Option%3CAbi%3E" class="anchor"></a><h3 class="code-header">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;</h3></section></summary><div class="impl-items"><section id="method.parse-10" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#984-990">source</a><a href="#method.parse-10" class="anchor"></a><h4 class="code-header">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;</h4></section></div></details><h2 id="implementors" class="small-section-header">Implementors<a href="#implementors" class="anchor"></a></h2><div id="implementors-list"><section id="impl-Parse-for-BinOp" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/op.rs.html#127-159">source</a><a href="#impl-Parse-for-BinOp" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Expr" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#1028-1036">source</a><a href="#impl-Parse-for-Expr" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-FnArg" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1484-1493">source</a><a href="#impl-Parse-for-FnArg" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ForeignItem" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1739-1815">source</a><a href="#impl-Parse-for-ForeignItem" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-GenericArgument" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/path.rs.html#277-361">source</a><a href="#impl-Parse-for-GenericArgument" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-GenericParam" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#602-626">source</a><a href="#impl-Parse-for-GenericParam" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ImplItem" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2507-2588">source</a><a href="#impl-Parse-for-ImplItem" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Item" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#898-1061">source</a><a href="#impl-Parse-for-Item" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Lit" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lit.rs.html#801-830">source</a><a href="#impl-Parse-for-Lit" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Member" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2675-2685">source</a><a href="#impl-Parse-for-Member" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Meta" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/attr.rs.html#651-656">source</a><a href="#impl-Parse-for-Meta" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-RangeLimits" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2624-2638">source</a><a href="#impl-Parse-for-RangeLimits" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ReturnType" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#765-770">source</a><a href="#impl-Parse-for-ReturnType" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-StaticMutability" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2756-2761">source</a><a href="#impl-Parse-for-StaticMutability" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.StaticMutability.html" title="enum syn::StaticMutability">StaticMutability</a></h3></section><section id="impl-Parse-for-Stmt" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/stmt.rs.html#175-180">source</a><a href="#impl-Parse-for-Stmt" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TraitBoundModifier" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#833-841">source</a><a href="#impl-Parse-for-TraitBoundModifier" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TraitItem" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2201-2257">source</a><a href="#impl-Parse-for-TraitItem" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Type" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#273-279">source</a><a href="#impl-Parse-for-Type" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeParamBound" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#748-779">source</a><a href="#impl-Parse-for-TypeParamBound" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-UnOp" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/op.rs.html#162-175">source</a><a href="#impl-Parse-for-UnOp" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-UseTree" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1293-1298">source</a><a href="#impl-Parse-for-UseTree" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Visibility" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/restriction.rs.html#66-85">source</a><a href="#impl-Parse-for-Visibility" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-WherePredicate" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#910-969">source</a><a href="#impl-Parse-for-WherePredicate" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Abi" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#973-980">source</a><a href="#impl-Parse-for-Abi" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-AngleBracketedGenericArguments" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/path.rs.html#440-445">source</a><a href="#impl-Parse-for-AngleBracketedGenericArguments" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Arm" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2689-2719">source</a><a href="#impl-Parse-for-Arm" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-BareFnArg" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#902-907">source</a><a href="#impl-Parse-for-BareFnArg" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Block" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/stmt.rs.html#164-172">source</a><a href="#impl-Parse-for-Block" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-BoundLifetimes" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#667-693">source</a><a href="#impl-Parse-for-BoundLifetimes" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ConstParam" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#844-865">source</a><a href="#impl-Parse-for-ConstParam" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-DeriveInput" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/derive.rs.html#67-133">source</a><a href="#impl-Parse-for-DeriveInput" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprArray" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#1845-1867">source</a><a href="#impl-Parse-for-ExprArray" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprAssign" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprAssign" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprAsync" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2308-2317">source</a><a href="#impl-Parse-for-ExprAsync" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprAwait" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprAwait" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAwait.html" title="struct syn::ExprAwait">ExprAwait</a></h3></section><section id="impl-Parse-for-ExprBinary" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprBinary" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprBlock" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2581-2597">source</a><a href="#impl-Parse-for-ExprBlock" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprBreak" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2204-2209">source</a><a href="#impl-Parse-for-ExprBreak" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprCall" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprCall" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprCast" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprCast" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprClosure" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2181-2186">source</a><a href="#impl-Parse-for-ExprClosure" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprConst" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2381-2396">source</a><a href="#impl-Parse-for-ExprConst" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprConst.html" title="struct syn::ExprConst">ExprConst</a></h3></section><section id="impl-Parse-for-ExprContinue" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2423-2431">source</a><a href="#impl-Parse-for-ExprContinue" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprField" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprField" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprForLoop" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2040-2066">source</a><a href="#impl-Parse-for-ExprForLoop" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprIf" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#1988-2005">source</a><a href="#impl-Parse-for-ExprIf" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprIndex" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprIndex" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprInfer" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2029-2036">source</a><a href="#impl-Parse-for-ExprInfer" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprInfer.html" title="struct syn::ExprInfer">ExprInfer</a></h3></section><section id="impl-Parse-for-ExprLet" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#1970-1984">source</a><a href="#impl-Parse-for-ExprLet" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprLit" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#1933-1940">source</a><a href="#impl-Parse-for-ExprLit" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprLoop" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2070-2088">source</a><a href="#impl-Parse-for-ExprLoop" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprMacro" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#1750-1757">source</a><a href="#impl-Parse-for-ExprMacro" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprMatch" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2092-2115">source</a><a href="#impl-Parse-for-ExprMatch" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprMethodCall" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprMethodCall" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprParen" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#1953-1957">source</a><a href="#impl-Parse-for-ExprParen" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprPath" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2661-2672">source</a><a href="#impl-Parse-for-ExprPath" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprRange" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprRange" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprReference" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2190-2200">source</a><a href="#impl-Parse-for-ExprReference" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprRepeat" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#1871-1882">source</a><a href="#impl-Parse-for-ExprRepeat" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprReturn" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2213-2218">source</a><a href="#impl-Parse-for-ExprReturn" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprStruct" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2507-2512">source</a><a href="#impl-Parse-for-ExprStruct" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprTry" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprTry" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprTryBlock" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2222-2230">source</a><a href="#impl-Parse-for-ExprTryBlock" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprTuple" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2142-2154">source</a><a href="#impl-Parse-for-ExprTuple" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprUnary" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2158-2164">source</a><a href="#impl-Parse-for-ExprUnary" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprUnsafe" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2562-2577">source</a><a href="#impl-Parse-for-ExprUnsafe" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprWhile" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2357-2377">source</a><a href="#impl-Parse-for-ExprWhile" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ExprYield" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2234-2248">source</a><a href="#impl-Parse-for-ExprYield" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-FieldValue" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2477-2503">source</a><a href="#impl-Parse-for-FieldValue" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-FieldsNamed" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/data.rs.html#192-200">source</a><a href="#impl-Parse-for-FieldsNamed" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-FieldsUnnamed" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/data.rs.html#203-211">source</a><a href="#impl-Parse-for-FieldsUnnamed" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-File" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/file.rs.html#94-108">source</a><a href="#impl-Parse-for-File" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ForeignItemFn" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1818-1831">source</a><a href="#impl-Parse-for-ForeignItemFn" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ForeignItemMacro" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1899-1914">source</a><a href="#impl-Parse-for-ForeignItemMacro" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ForeignItemStatic" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1834-1847">source</a><a href="#impl-Parse-for-ForeignItemStatic" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ForeignItemType" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1850-1865">source</a><a href="#impl-Parse-for-ForeignItemType" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Generics" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#539-599">source</a><a href="#impl-Parse-for-Generics" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Ident" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ident.rs.html#74-91">source</a><a href="#impl-Parse-for-Ident" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ImplItemConst" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2591-2614">source</a><a href="#impl-Parse-for-ImplItemConst" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ImplItemFn" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2617-2622">source</a><a href="#impl-Parse-for-ImplItemFn" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemFn.html" title="struct syn::ImplItemFn">ImplItemFn</a></h3></section><section id="impl-Parse-for-ImplItemMacro" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2720-2735">source</a><a href="#impl-Parse-for-ImplItemMacro" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ImplItemType" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2658-2682">source</a><a href="#impl-Parse-for-ImplItemType" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Index" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2722-2737">source</a><a href="#impl-Parse-for-Index" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemConst" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1387-1409">source</a><a href="#impl-Parse-for-ItemConst" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemEnum" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1995-2016">source</a><a href="#impl-Parse-for-ItemEnum" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemExternCrate" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1226-1256">source</a><a href="#impl-Parse-for-ItemExternCrate" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemFn" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1455-1462">source</a><a href="#impl-Parse-for-ItemFn" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemForeignMod" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1714-1736">source</a><a href="#impl-Parse-for-ItemForeignMod" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemImpl" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2395-2400">source</a><a href="#impl-Parse-for-ItemImpl" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemMacro" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1172-1200">source</a><a href="#impl-Parse-for-ItemMacro" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemMod" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1665-1711">source</a><a href="#impl-Parse-for-ItemMod" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemStatic" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1369-1384">source</a><a href="#impl-Parse-for-ItemStatic" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemStruct" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1971-1992">source</a><a href="#impl-Parse-for-ItemStruct" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemTrait" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2070-2090">source</a><a href="#impl-Parse-for-ItemTrait" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemTraitAlias" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2145-2150">source</a><a href="#impl-Parse-for-ItemTraitAlias" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemType" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1917-1934">source</a><a href="#impl-Parse-for-ItemType" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemUnion" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2019-2039">source</a><a href="#impl-Parse-for-ItemUnion" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ItemUse" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1259-1264">source</a><a href="#impl-Parse-for-ItemUse" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Label" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/expr.rs.html#2400-2407">source</a><a href="#impl-Parse-for-Label" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Lifetime" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lifetime.rs.html#128-136">source</a><a href="#impl-Parse-for-Lifetime" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-LifetimeParam" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#629-664">source</a><a href="#impl-Parse-for-LifetimeParam" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LifetimeParam.html" title="struct syn::LifetimeParam">LifetimeParam</a></h3></section><section id="impl-Parse-for-LitBool" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lit.rs.html#938-946">source</a><a href="#impl-Parse-for-LitBool" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-LitByte" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lit.rs.html#894-902">source</a><a href="#impl-Parse-for-LitByte" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-LitByteStr" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lit.rs.html#883-891">source</a><a href="#impl-Parse-for-LitByteStr" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-LitChar" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lit.rs.html#905-913">source</a><a href="#impl-Parse-for-LitChar" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-LitFloat" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lit.rs.html#927-935">source</a><a href="#impl-Parse-for-LitFloat" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-LitInt" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lit.rs.html#916-924">source</a><a href="#impl-Parse-for-LitInt" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-LitStr" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/lit.rs.html#872-880">source</a><a href="#impl-Parse-for-LitStr" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Macro" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/mac.rs.html#169-183">source</a><a href="#impl-Parse-for-Macro" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-MetaList" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/attr.rs.html#659-664">source</a><a href="#impl-Parse-for-MetaList" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-MetaNameValue" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/attr.rs.html#667-672">source</a><a href="#impl-Parse-for-MetaNameValue" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ParenthesizedGenericArguments" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/path.rs.html#448-457">source</a><a href="#impl-Parse-for-ParenthesizedGenericArguments" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Path" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/path.rs.html#270-274">source</a><a href="#impl-Parse-for-Path" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-PathSegment" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/path.rs.html#460-464">source</a><a href="#impl-Parse-for-PathSegment" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Receiver" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1551-1593">source</a><a href="#impl-Parse-for-Receiver" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Signature" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#1421-1452">source</a><a href="#impl-Parse-for-Signature" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TraitBound" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#808-830">source</a><a href="#impl-Parse-for-TraitBound" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TraitItemConst" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2260-2288">source</a><a href="#impl-Parse-for-TraitItemConst" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TraitItemFn" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2291-2317">source</a><a href="#impl-Parse-for-TraitItemFn" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemFn.html" title="struct syn::TraitItemFn">TraitItemFn</a></h3></section><section id="impl-Parse-for-TraitItemMacro" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2377-2392">source</a><a href="#impl-Parse-for-TraitItemMacro" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TraitItemType" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/item.rs.html#2320-2341">source</a><a href="#impl-Parse-for-TraitItemType" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeArray" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#581-591">source</a><a href="#impl-Parse-for-TypeArray" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeBareFn" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#630-674">source</a><a href="#impl-Parse-for-TypeBareFn" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeGroup" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#870-878">source</a><a href="#impl-Parse-for-TypeGroup" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeImplTrait" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#827-832">source</a><a href="#impl-Parse-for-TypeImplTrait" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeInfer" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#686-692">source</a><a href="#impl-Parse-for-TypeInfer" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeMacro" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#728-734">source</a><a href="#impl-Parse-for-TypeMacro" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeNever" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#677-683">source</a><a href="#impl-Parse-for-TypeNever" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeParam" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#707-745">source</a><a href="#impl-Parse-for-TypeParam" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeParen" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#881-886">source</a><a href="#impl-Parse-for-TypeParen" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypePath" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#737-743">source</a><a href="#impl-Parse-for-TypePath" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypePtr" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#594-614">source</a><a href="#impl-Parse-for-TypePtr" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeReference" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#617-627">source</a><a href="#impl-Parse-for-TypeReference" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeSlice" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#570-578">source</a><a href="#impl-Parse-for-TypeSlice" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeTraitObject" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#773-778">source</a><a href="#impl-Parse-for-TypeTraitObject" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-TypeTuple" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/ty.rs.html#695-725">source</a><a href="#impl-Parse-for-TypeTuple" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Variant" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/data.rs.html#163-189">source</a><a href="#impl-Parse-for-Variant" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-WhereClause" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/generics.rs.html#868-896">source</a><a href="#impl-Parse-for-WhereClause" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Abstract" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Abstract" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-And" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-And" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-AndAnd" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-AndAnd" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-AndEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-AndEq" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-As" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-As" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Async" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Async" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-At" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-At" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Auto" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Auto" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Await" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Await" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Become" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Become" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Box" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Box" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Break" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Break" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Caret" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Caret" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-CaretEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-CaretEq" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Colon" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Colon" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Comma" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Comma" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Const" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Const" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Continue" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Continue" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Crate" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Crate" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Default" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Default" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Do" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Do" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Dollar" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Dollar" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Dot" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Dot" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-DotDot" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-DotDot" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DotDot.html" title="struct syn::token::DotDot">DotDot</a></h3></section><section id="impl-Parse-for-DotDotDot" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-DotDotDot" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DotDotDot.html" title="struct syn::token::DotDotDot">DotDotDot</a></h3></section><section id="impl-Parse-for-DotDotEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-DotDotEq" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Dyn" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Dyn" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Else" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Else" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Enum" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Enum" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Eq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Eq" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-EqEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-EqEq" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Extern" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Extern" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-FatArrow" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-FatArrow" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Final" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Final" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Fn" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Fn" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-For" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-For" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Ge" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Ge" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Gt" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Gt" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-If" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-If" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Impl" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Impl" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-In" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-In" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-LArrow" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-LArrow" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Le" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Le" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Let" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Let" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Loop" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Loop" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Lt" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Lt" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Macro-1" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Macro-1" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Match" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Match" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Minus" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Minus" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Minus.html" title="struct syn::token::Minus">Minus</a></h3></section><section id="impl-Parse-for-MinusEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-MinusEq" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.MinusEq.html" title="struct syn::token::MinusEq">MinusEq</a></h3></section><section id="impl-Parse-for-Mod" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Mod" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Move" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Move" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Mut" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Mut" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Ne" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Ne" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Not" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Not" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Not.html" title="struct syn::token::Not">Not</a></h3></section><section id="impl-Parse-for-Or" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Or" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-OrEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-OrEq" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-OrOr" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-OrOr" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Override" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Override" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-PathSep" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-PathSep" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.PathSep.html" title="struct syn::token::PathSep">PathSep</a></h3></section><section id="impl-Parse-for-Percent" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Percent" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Percent.html" title="struct syn::token::Percent">Percent</a></h3></section><section id="impl-Parse-for-PercentEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-PercentEq" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.PercentEq.html" title="struct syn::token::PercentEq">PercentEq</a></h3></section><section id="impl-Parse-for-Plus" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Plus" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Plus.html" title="struct syn::token::Plus">Plus</a></h3></section><section id="impl-Parse-for-PlusEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-PlusEq" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.PlusEq.html" title="struct syn::token::PlusEq">PlusEq</a></h3></section><section id="impl-Parse-for-Pound" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Pound" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Priv" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Priv" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Pub" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Pub" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Question" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Question" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-RArrow" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-RArrow" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Ref" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Ref" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Return" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Return" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-SelfType" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-SelfType" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-SelfValue" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-SelfValue" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Semi" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Semi" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Shl" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Shl" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ShlEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-ShlEq" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Shr" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Shr" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-ShrEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-ShrEq" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Slash" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Slash" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Slash.html" title="struct syn::token::Slash">Slash</a></h3></section><section id="impl-Parse-for-SlashEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-SlashEq" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SlashEq.html" title="struct syn::token::SlashEq">SlashEq</a></h3></section><section id="impl-Parse-for-Star" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Star" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-StarEq" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-StarEq" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.StarEq.html" title="struct syn::token::StarEq">StarEq</a></h3></section><section id="impl-Parse-for-Static" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Static" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Struct" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Struct" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Super" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Super" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Tilde" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#785-832">source</a><a href="#impl-Parse-for-Tilde" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Trait" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Trait" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Try" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Try" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Type-1" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Type-1" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Typeof" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Typeof" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Underscore" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#574-590">source</a><a href="#impl-Parse-for-Underscore" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Union" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Union" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Unsafe" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Unsafe" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Unsized" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Unsized" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Use" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Use" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Virtual" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Virtual" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Where" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Where" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-While" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-While" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Yield" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/token.rs.html#730-783">source</a><a href="#impl-Parse-for-Yield" class="anchor"></a><h3 class="code-header">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></h3></section><section id="impl-Parse-for-Nothing" class="impl has-srclink"><a class="srclink rightside" href="../../src/syn/parse.rs.html#1304-1308">source</a><a href="#impl-Parse-for-Nothing" class="anchor"></a><h3 class="code-header">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></h3></section></div><script src="../../implementors/syn/parse/trait.Parse.js" data-ignore-extern-crates="alloc,core,proc_macro2" async></script></section></div></main><div id="rustdoc-vars" data-root-path="../../" data-current-crate="syn" data-themes="ayu,dark,light" data-resource-suffix="" data-rustdoc-version="1.66.0-nightly (5c8bff74b 2022-10-21)" ></div></body></html>