ssw/doc/syn/parse/trait.Parse.html
2023-01-09 19:23:20 +01:00

7 lines
128 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Parsing interface implemented by all types that can be parsed in a default way from a token stream."><meta name="keywords" content="rust, rustlang, rust-lang, Parse"><title>Parse in syn::parse - Rust</title><link rel="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" type="text/css" href="../../normalize.css"><link rel="stylesheet" type="text/css" href="../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../ayu.css" disabled><link rel="stylesheet" type="text/css" href="../../dark.css" disabled><link rel="stylesheet" type="text/css" 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 class="location"></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><div class="block"><h3 class="sidebar-title"><a href="#required-methods">Required Methods</a></h3><ul><li><a href="#tymethod.parse">parse</a></li></ul></div><div class="block"><h3 class="sidebar-title"><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul><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></div><div class="block"><h3 class="sidebar-title"><a href="#implementors">Implementors</a></h3></div></section><h2 class="location"><a href="index.html">In syn::parse</a></h2></div></nav><main><div class="width-limiter"><div class="sub-container"><a class="sub-logo-container" href="../../syn/index.html"><img class="rust-logo" src="../../rust-logo.svg" alt="logo"></a><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"><button type="button">?</button></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></div><section id="main-content" class="content"><div class="main-heading"><h1 class="fqn"><span class="in-band">Trait <a href="../index.html">syn</a>::<wbr><a href="index.html">parse</a>::<wbr><a class="trait" href="#">Parse</a><button id="copy-path" onclick="copy_path(this)" title="Copy item path to clipboard"><img src="../../clipboard.svg" width="19" height="18" alt="Copy item path"></button></span></h1><span class="out-of-band"><a class="srclink" href="../../src/syn/parse.rs.html#220-222">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="docblock item-decl"><pre class="rust trait"><code>pub trait Parse: <a class="trait" href="https://doc.rust-lang.org/1.64.0/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"><div id="tymethod.parse" class="method has-srclink"><div class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#221">source</a></div><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></div></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"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2583-2591">source</a></span><a href="#impl-Parse-for-Option%3CLabel%3E" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.64.0/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"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2584-2590">source</a></span><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"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#748-756">source</a></span><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.64.0/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"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#749-755">source</a></span><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"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#972-980">source</a></span><a href="#impl-Parse-for-Option%3CWhereClause%3E" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.64.0/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"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#973-979">source</a></span><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-Option%3CAbi%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#1109-1117">source</a></span><a href="#impl-Parse-for-Option%3CAbi%3E" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.64.0/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-3" class="method trait-impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#1110-1116">source</a></span><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-Box%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1066-1070">source</a></span><a href="#impl-Parse-for-Box%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl&lt;T:&nbsp;<a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a>&gt; <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="https://doc.rust-lang.org/1.64.0/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-4" class="method trait-impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1067-1069">source</a></span><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-Option%3CT%3E" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1073-1081">source</a></span><a href="#impl-Parse-for-Option%3CT%3E" class="anchor"></a><h3 class="code-header in-band">impl&lt;T:&nbsp;<a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> + <a class="trait" href="../token/trait.Token.html" title="trait syn::token::Token">Token</a>&gt; <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.64.0/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-5" class="method trait-impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1074-1080">source</a></span><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-TokenStream" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1084-1088">source</a></span><a href="#impl-Parse-for-TokenStream" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.TokenStream.html" title="struct proc_macro2::TokenStream">TokenStream</a></h3></section></summary><div class="impl-items"><section id="method.parse-6" class="method trait-impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1085-1087">source</a></span><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-TokenTree" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1091-1098">source</a></span><a href="#impl-Parse-for-TokenTree" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../../proc_macro2/enum.TokenTree.html" title="enum proc_macro2::TokenTree">TokenTree</a></h3></section></summary><div class="impl-items"><section id="method.parse-7" class="method trait-impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1092-1097">source</a></span><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-Group" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1101-1114">source</a></span><a href="#impl-Parse-for-Group" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Group.html" title="struct proc_macro2::Group">Group</a></h3></section></summary><div class="impl-items"><section id="method.parse-8" class="method trait-impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1102-1113">source</a></span><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-Punct" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1117-1124">source</a></span><a href="#impl-Parse-for-Punct" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Punct.html" title="struct proc_macro2::Punct">Punct</a></h3></section></summary><div class="impl-items"><section id="method.parse-9" class="method trait-impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1118-1123">source</a></span><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-Literal" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1127-1134">source</a></span><a href="#impl-Parse-for-Literal" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Literal.html" title="struct proc_macro2::Literal">Literal</a></h3></section></summary><div class="impl-items"><section id="method.parse-10" class="method trait-impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1128-1133">source</a></span><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 class="item-list" id="implementors-list"><section id="impl-Parse-for-BinOp" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/op.rs.html#131-163">source</a></span><a href="#impl-Parse-for-BinOp" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.BinOp.html" title="enum syn::BinOp">BinOp</a></h3></section><section id="impl-Parse-for-Expr" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#1160-1164">source</a></span><a href="#impl-Parse-for-Expr" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Expr.html" title="enum syn::Expr">Expr</a></h3></section><section id="impl-Parse-for-FnArg" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1565-1582">source</a></span><a href="#impl-Parse-for-FnArg" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.FnArg.html" title="enum syn::FnArg">FnArg</a></h3></section><section id="impl-Parse-for-ForeignItem" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1746-1825">source</a></span><a href="#impl-Parse-for-ForeignItem" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ForeignItem.html" title="enum syn::ForeignItem">ForeignItem</a></h3></section><section id="impl-Parse-for-GenericArgument" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/path.rs.html#226-315">source</a></span><a href="#impl-Parse-for-GenericArgument" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.GenericArgument.html" title="enum syn::GenericArgument">GenericArgument</a></h3></section><section id="impl-Parse-for-GenericMethodArgument" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2102-2116">source</a></span><a href="#impl-Parse-for-GenericMethodArgument" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.GenericMethodArgument.html" title="enum syn::GenericMethodArgument">GenericMethodArgument</a></h3></section><section id="impl-Parse-for-GenericParam" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#661-685">source</a></span><a href="#impl-Parse-for-GenericParam" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.GenericParam.html" title="enum syn::GenericParam">GenericParam</a></h3></section><section id="impl-Parse-for-ImplItem" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2523-2601">source</a></span><a href="#impl-Parse-for-ImplItem" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ImplItem.html" title="enum syn::ImplItem">ImplItem</a></h3></section><section id="impl-Parse-for-Item" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#977-1152">source</a></span><a href="#impl-Parse-for-Item" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Item.html" title="enum syn::Item">Item</a></h3></section><section id="impl-Parse-for-Lit" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lit.rs.html#745-774">source</a></span><a href="#impl-Parse-for-Lit" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Lit.html" title="enum syn::Lit">Lit</a></h3></section><section id="impl-Parse-for-Member" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2833-2843">source</a></span><a href="#impl-Parse-for-Member" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Member.html" title="enum syn::Member">Member</a></h3></section><section id="impl-Parse-for-Meta" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/attr.rs.html#558-563">source</a></span><a href="#impl-Parse-for-Meta" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Meta.html" title="enum syn::Meta">Meta</a></h3></section><section id="impl-Parse-for-NestedMeta" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/attr.rs.html#582-594">source</a></span><a href="#impl-Parse-for-NestedMeta" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.NestedMeta.html" title="enum syn::NestedMeta">NestedMeta</a></h3></section><section id="impl-Parse-for-Pat" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/pat.rs.html#319-370">source</a></span><a href="#impl-Parse-for-Pat" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Pat.html" title="enum syn::Pat">Pat</a></h3></section><section id="impl-Parse-for-RangeLimits" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2802-2816">source</a></span><a href="#impl-Parse-for-RangeLimits" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.RangeLimits.html" title="enum syn::RangeLimits">RangeLimits</a></h3></section><section id="impl-Parse-for-ReturnType" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#888-893">source</a></span><a href="#impl-Parse-for-ReturnType" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ReturnType.html" title="enum syn::ReturnType">ReturnType</a></h3></section><section id="impl-Parse-for-Stmt" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/stmt.rs.html#148-152">source</a></span><a href="#impl-Parse-for-Stmt" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Stmt.html" title="enum syn::Stmt">Stmt</a></h3></section><section id="impl-Parse-for-TraitBoundModifier" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#906-914">source</a></span><a href="#impl-Parse-for-TraitBoundModifier" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TraitBoundModifier.html" title="enum syn::TraitBoundModifier">TraitBoundModifier</a></h3></section><section id="impl-Parse-for-TraitItem" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2201-2258">source</a></span><a href="#impl-Parse-for-TraitItem" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TraitItem.html" title="enum syn::TraitItem">TraitItem</a></h3></section><section id="impl-Parse-for-Type" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#343-349">source</a></span><a href="#impl-Parse-for-Type" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::<a class="enum" href="../enum.Type.html" title="enum syn::Type">Type</a></h3></section><section id="impl-Parse-for-TypeParamBound" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#813-829">source</a></span><a href="#impl-Parse-for-TypeParamBound" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TypeParamBound.html" title="enum syn::TypeParamBound">TypeParamBound</a></h3></section><section id="impl-Parse-for-UnOp" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/op.rs.html#166-179">source</a></span><a href="#impl-Parse-for-UnOp" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.UnOp.html" title="enum syn::UnOp">UnOp</a></h3></section><section id="impl-Parse-for-UseTree" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1353-1399">source</a></span><a href="#impl-Parse-for-UseTree" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.UseTree.html" title="enum syn::UseTree">UseTree</a></h3></section><section id="impl-Parse-for-Visibility" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/data.rs.html#328-349">source</a></span><a href="#impl-Parse-for-Visibility" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Visibility.html" title="enum syn::Visibility">Visibility</a></h3></section><section id="impl-Parse-for-WherePredicate" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#983-1042">source</a></span><a href="#impl-Parse-for-WherePredicate" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.WherePredicate.html" title="enum syn::WherePredicate">WherePredicate</a></h3></section><section id="impl-Parse-for-Abi" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#1099-1106">source</a></span><a href="#impl-Parse-for-Abi" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Abi.html" title="struct syn::Abi">Abi</a></h3></section><section id="impl-Parse-for-AngleBracketedGenericArguments" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/path.rs.html#359-383">source</a></span><a href="#impl-Parse-for-AngleBracketedGenericArguments" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.AngleBracketedGenericArguments.html" title="struct syn::AngleBracketedGenericArguments">AngleBracketedGenericArguments</a></h3></section><section id="impl-Parse-for-Arm" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2847-2877">source</a></span><a href="#impl-Parse-for-Arm" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Arm.html" title="struct syn::Arm">Arm</a></h3></section><section id="impl-Parse-for-BareFnArg" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#1025-1030">source</a></span><a href="#impl-Parse-for-BareFnArg" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.BareFnArg.html" title="struct syn::BareFnArg">BareFnArg</a></h3></section><section id="impl-Parse-for-Binding" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/path.rs.html#431-439">source</a></span><a href="#impl-Parse-for-Binding" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Binding.html" title="struct syn::Binding">Binding</a></h3></section><section id="impl-Parse-for-Block" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/stmt.rs.html#137-145">source</a></span><a href="#impl-Parse-for-Block" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Block.html" title="struct syn::Block">Block</a></h3></section><section id="impl-Parse-for-BoundLifetimes" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#726-745">source</a></span><a href="#impl-Parse-for-BoundLifetimes" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a></h3></section><section id="impl-Parse-for-ConstParam" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#917-938">source</a></span><a href="#impl-Parse-for-ConstParam" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ConstParam.html" title="struct syn::ConstParam">ConstParam</a></h3></section><section id="impl-Parse-for-Constraint" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/path.rs.html#443-451">source</a></span><a href="#impl-Parse-for-Constraint" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Constraint.html" title="struct syn::Constraint">Constraint</a></h3></section><section id="impl-Parse-for-DeriveInput" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/derive.rs.html#96-162">source</a></span><a href="#impl-Parse-for-DeriveInput" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.DeriveInput.html" title="struct syn::DeriveInput">DeriveInput</a></h3></section><section id="impl-Parse-for-ExprArray" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#1976-1998">source</a></span><a href="#impl-Parse-for-ExprArray" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprArray.html" title="struct syn::ExprArray">ExprArray</a></h3></section><section id="impl-Parse-for-ExprAssign" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprAssign" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAssign.html" title="struct syn::ExprAssign">ExprAssign</a></h3></section><section id="impl-Parse-for-ExprAssignOp" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprAssignOp" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAssignOp.html" title="struct syn::ExprAssignOp">ExprAssignOp</a></h3></section><section id="impl-Parse-for-ExprAsync" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2497-2506">source</a></span><a href="#impl-Parse-for-ExprAsync" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAsync.html" title="struct syn::ExprAsync">ExprAsync</a></h3></section><section id="impl-Parse-for-ExprAwait" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprAwait" class="anchor"></a><h3 class="code-header in-band">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"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprBinary" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBinary.html" title="struct syn::ExprBinary">ExprBinary</a></h3></section><section id="impl-Parse-for-ExprBlock" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2760-2776">source</a></span><a href="#impl-Parse-for-ExprBlock" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBlock.html" title="struct syn::ExprBlock">ExprBlock</a></h3></section><section id="impl-Parse-for-ExprBox" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2327-2333">source</a></span><a href="#impl-Parse-for-ExprBox" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBox.html" title="struct syn::ExprBox">ExprBox</a></h3></section><section id="impl-Parse-for-ExprBreak" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2397-2402">source</a></span><a href="#impl-Parse-for-ExprBreak" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBreak.html" title="struct syn::ExprBreak">ExprBreak</a></h3></section><section id="impl-Parse-for-ExprCall" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprCall" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprCall.html" title="struct syn::ExprCall">ExprCall</a></h3></section><section id="impl-Parse-for-ExprCast" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprCast" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprCast.html" title="struct syn::ExprCast">ExprCast</a></h3></section><section id="impl-Parse-for-ExprClosure" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2373-2378">source</a></span><a href="#impl-Parse-for-ExprClosure" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprClosure.html" title="struct syn::ExprClosure">ExprClosure</a></h3></section><section id="impl-Parse-for-ExprContinue" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2595-2603">source</a></span><a href="#impl-Parse-for-ExprContinue" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprContinue.html" title="struct syn::ExprContinue">ExprContinue</a></h3></section><section id="impl-Parse-for-ExprField" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprField" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprField.html" title="struct syn::ExprField">ExprField</a></h3></section><section id="impl-Parse-for-ExprForLoop" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2207-2233">source</a></span><a href="#impl-Parse-for-ExprForLoop" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprForLoop.html" title="struct syn::ExprForLoop">ExprForLoop</a></h3></section><section id="impl-Parse-for-ExprIf" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2166-2183">source</a></span><a href="#impl-Parse-for-ExprIf" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprIf.html" title="struct syn::ExprIf">ExprIf</a></h3></section><section id="impl-Parse-for-ExprIndex" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprIndex" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprIndex.html" title="struct syn::ExprIndex">ExprIndex</a></h3></section><section id="impl-Parse-for-ExprLet" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2148-2162">source</a></span><a href="#impl-Parse-for-ExprLet" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLet.html" title="struct syn::ExprLet">ExprLet</a></h3></section><section id="impl-Parse-for-ExprLit" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2064-2071">source</a></span><a href="#impl-Parse-for-ExprLit" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLit.html" title="struct syn::ExprLit">ExprLit</a></h3></section><section id="impl-Parse-for-ExprLoop" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2237-2255">source</a></span><a href="#impl-Parse-for-ExprLoop" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLoop.html" title="struct syn::ExprLoop">ExprLoop</a></h3></section><section id="impl-Parse-for-ExprMacro" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#1881-1888">source</a></span><a href="#impl-Parse-for-ExprMacro" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMacro.html" title="struct syn::ExprMacro">ExprMacro</a></h3></section><section id="impl-Parse-for-ExprMatch" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2259-2282">source</a></span><a href="#impl-Parse-for-ExprMatch" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMatch.html" title="struct syn::ExprMatch">ExprMatch</a></h3></section><section id="impl-Parse-for-ExprMethodCall" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprMethodCall" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMethodCall.html" title="struct syn::ExprMethodCall">ExprMethodCall</a></h3></section><section id="impl-Parse-for-ExprParen" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2085-2089">source</a></span><a href="#impl-Parse-for-ExprParen" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprParen.html" title="struct syn::ExprParen">ExprParen</a></h3></section><section id="impl-Parse-for-ExprPath" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2819-2830">source</a></span><a href="#impl-Parse-for-ExprPath" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprPath.html" title="struct syn::ExprPath">ExprPath</a></h3></section><section id="impl-Parse-for-ExprRange" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprRange" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprRange.html" title="struct syn::ExprRange">ExprRange</a></h3></section><section id="impl-Parse-for-ExprReference" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2382-2393">source</a></span><a href="#impl-Parse-for-ExprReference" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprReference.html" title="struct syn::ExprReference">ExprReference</a></h3></section><section id="impl-Parse-for-ExprRepeat" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2002-2013">source</a></span><a href="#impl-Parse-for-ExprRepeat" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprRepeat.html" title="struct syn::ExprRepeat">ExprRepeat</a></h3></section><section id="impl-Parse-for-ExprReturn" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2406-2411">source</a></span><a href="#impl-Parse-for-ExprReturn" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprReturn.html" title="struct syn::ExprReturn">ExprReturn</a></h3></section><section id="impl-Parse-for-ExprStruct" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2679-2684">source</a></span><a href="#impl-Parse-for-ExprStruct" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprStruct.html" title="struct syn::ExprStruct">ExprStruct</a></h3></section><section id="impl-Parse-for-ExprTry" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprTry" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTry.html" title="struct syn::ExprTry">ExprTry</a></h3></section><section id="impl-Parse-for-ExprTryBlock" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2415-2423">source</a></span><a href="#impl-Parse-for-ExprTryBlock" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTryBlock.html" title="struct syn::ExprTryBlock">ExprTryBlock</a></h3></section><section id="impl-Parse-for-ExprTuple" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprTuple" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTuple.html" title="struct syn::ExprTuple">ExprTuple</a></h3></section><section id="impl-Parse-for-ExprType" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2309-2323">source</a></span><a href="#impl-Parse-for-ExprType" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprType.html" title="struct syn::ExprType">ExprType</a></h3></section><section id="impl-Parse-for-ExprUnary" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2350-2356">source</a></span><a href="#impl-Parse-for-ExprUnary" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprUnary.html" title="struct syn::ExprUnary">ExprUnary</a></h3></section><section id="impl-Parse-for-ExprUnsafe" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2728-2743">source</a></span><a href="#impl-Parse-for-ExprUnsafe" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprUnsafe.html" title="struct syn::ExprUnsafe">ExprUnsafe</a></h3></section><section id="impl-Parse-for-ExprWhile" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2548-2568">source</a></span><a href="#impl-Parse-for-ExprWhile" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprWhile.html" title="struct syn::ExprWhile">ExprWhile</a></h3></section><section id="impl-Parse-for-ExprYield" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2427-2441">source</a></span><a href="#impl-Parse-for-ExprYield" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprYield.html" title="struct syn::ExprYield">ExprYield</a></h3></section><section id="impl-Parse-for-FieldValue" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2649-2675">source</a></span><a href="#impl-Parse-for-FieldValue" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldValue.html" title="struct syn::FieldValue">FieldValue</a></h3></section><section id="impl-Parse-for-FieldsNamed" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/data.rs.html#276-284">source</a></span><a href="#impl-Parse-for-FieldsNamed" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldsNamed.html" title="struct syn::FieldsNamed">FieldsNamed</a></h3></section><section id="impl-Parse-for-FieldsUnnamed" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/data.rs.html#287-295">source</a></span><a href="#impl-Parse-for-FieldsUnnamed" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldsUnnamed.html" title="struct syn::FieldsUnnamed">FieldsUnnamed</a></h3></section><section id="impl-Parse-for-File" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/file.rs.html#94-108">source</a></span><a href="#impl-Parse-for-File" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.File.html" title="struct syn::File">File</a></h3></section><section id="impl-Parse-for-ForeignItemFn" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1828-1841">source</a></span><a href="#impl-Parse-for-ForeignItemFn" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemFn.html" title="struct syn::ForeignItemFn">ForeignItemFn</a></h3></section><section id="impl-Parse-for-ForeignItemMacro" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1904-1919">source</a></span><a href="#impl-Parse-for-ForeignItemMacro" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemMacro.html" title="struct syn::ForeignItemMacro">ForeignItemMacro</a></h3></section><section id="impl-Parse-for-ForeignItemStatic" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1844-1857">source</a></span><a href="#impl-Parse-for-ForeignItemStatic" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemStatic.html" title="struct syn::ForeignItemStatic">ForeignItemStatic</a></h3></section><section id="impl-Parse-for-ForeignItemType" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1860-1870">source</a></span><a href="#impl-Parse-for-ForeignItemType" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemType.html" title="struct syn::ForeignItemType">ForeignItemType</a></h3></section><section id="impl-Parse-for-Generics" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#598-658">source</a></span><a href="#impl-Parse-for-Generics" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Generics.html" title="struct syn::Generics">Generics</a></h3></section><section id="impl-Parse-for-Ident" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ident.rs.html#39-50">source</a></span><a href="#impl-Parse-for-Ident" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Ident.html" title="struct syn::Ident">Ident</a></h3></section><section id="impl-Parse-for-ImplItemConst" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2604-2626">source</a></span><a href="#impl-Parse-for-ImplItemConst" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemConst.html" title="struct syn::ImplItemConst">ImplItemConst</a></h3></section><section id="impl-Parse-for-ImplItemMacro" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2727-2742">source</a></span><a href="#impl-Parse-for-ImplItemMacro" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemMacro.html" title="struct syn::ImplItemMacro">ImplItemMacro</a></h3></section><section id="impl-Parse-for-ImplItemMethod" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2629-2666">source</a></span><a href="#impl-Parse-for-ImplItemMethod" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemMethod.html" title="struct syn::ImplItemMethod">ImplItemMethod</a></h3></section><section id="impl-Parse-for-ImplItemType" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2669-2693">source</a></span><a href="#impl-Parse-for-ImplItemType" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemType.html" title="struct syn::ImplItemType">ImplItemType</a></h3></section><section id="impl-Parse-for-Index" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2880-2895">source</a></span><a href="#impl-Parse-for-Index" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Index.html" title="struct syn::Index">Index</a></h3></section><section id="impl-Parse-for-ItemConst" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1420-1441">source</a></span><a href="#impl-Parse-for-ItemConst" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemConst.html" title="struct syn::ItemConst">ItemConst</a></h3></section><section id="impl-Parse-for-ItemEnum" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1996-2017">source</a></span><a href="#impl-Parse-for-ItemEnum" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemEnum.html" title="struct syn::ItemEnum">ItemEnum</a></h3></section><section id="impl-Parse-for-ItemExternCrate" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1306-1336">source</a></span><a href="#impl-Parse-for-ItemExternCrate" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemExternCrate.html" title="struct syn::ItemExternCrate">ItemExternCrate</a></h3></section><section id="impl-Parse-for-ItemFn" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1536-1543">source</a></span><a href="#impl-Parse-for-ItemFn" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemFn.html" title="struct syn::ItemFn">ItemFn</a></h3></section><section id="impl-Parse-for-ItemForeignMod" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1723-1743">source</a></span><a href="#impl-Parse-for-ItemForeignMod" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemForeignMod.html" title="struct syn::ItemForeignMod">ItemForeignMod</a></h3></section><section id="impl-Parse-for-ItemImpl" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2411-2416">source</a></span><a href="#impl-Parse-for-ItemImpl" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemImpl.html" title="struct syn::ItemImpl">ItemImpl</a></h3></section><section id="impl-Parse-for-ItemMacro2" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1265-1303">source</a></span><a href="#impl-Parse-for-ItemMacro2" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemMacro2.html" title="struct syn::ItemMacro2">ItemMacro2</a></h3></section><section id="impl-Parse-for-ItemMacro" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1238-1262">source</a></span><a href="#impl-Parse-for-ItemMacro" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemMacro.html" title="struct syn::ItemMacro">ItemMacro</a></h3></section><section id="impl-Parse-for-ItemMod" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1681-1720">source</a></span><a href="#impl-Parse-for-ItemMod" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemMod.html" title="struct syn::ItemMod">ItemMod</a></h3></section><section id="impl-Parse-for-ItemStatic" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1402-1417">source</a></span><a href="#impl-Parse-for-ItemStatic" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemStatic.html" title="struct syn::ItemStatic">ItemStatic</a></h3></section><section id="impl-Parse-for-ItemStruct" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1972-1993">source</a></span><a href="#impl-Parse-for-ItemStruct" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemStruct.html" title="struct syn::ItemStruct">ItemStruct</a></h3></section><section id="impl-Parse-for-ItemTrait" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2071-2091">source</a></span><a href="#impl-Parse-for-ItemTrait" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemTrait.html" title="struct syn::ItemTrait">ItemTrait</a></h3></section><section id="impl-Parse-for-ItemTraitAlias" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2145-2150">source</a></span><a href="#impl-Parse-for-ItemTraitAlias" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemTraitAlias.html" title="struct syn::ItemTraitAlias">ItemTraitAlias</a></h3></section><section id="impl-Parse-for-ItemType" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1922-1939">source</a></span><a href="#impl-Parse-for-ItemType" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemType.html" title="struct syn::ItemType">ItemType</a></h3></section><section id="impl-Parse-for-ItemUnion" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2020-2040">source</a></span><a href="#impl-Parse-for-ItemUnion" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemUnion.html" title="struct syn::ItemUnion">ItemUnion</a></h3></section><section id="impl-Parse-for-ItemUse" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1339-1350">source</a></span><a href="#impl-Parse-for-ItemUse" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemUse.html" title="struct syn::ItemUse">ItemUse</a></h3></section><section id="impl-Parse-for-Label" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2572-2579">source</a></span><a href="#impl-Parse-for-Label" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Label.html" title="struct syn::Label">Label</a></h3></section><section id="impl-Parse-for-Lifetime" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lifetime.rs.html#128-136">source</a></span><a href="#impl-Parse-for-Lifetime" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Lifetime.html" title="struct syn::Lifetime">Lifetime</a></h3></section><section id="impl-Parse-for-LifetimeDef" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#688-723">source</a></span><a href="#impl-Parse-for-LifetimeDef" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LifetimeDef.html" title="struct syn::LifetimeDef">LifetimeDef</a></h3></section><section id="impl-Parse-for-LitBool" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lit.rs.html#883-891">source</a></span><a href="#impl-Parse-for-LitBool" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitBool.html" title="struct syn::LitBool">LitBool</a></h3></section><section id="impl-Parse-for-LitByte" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lit.rs.html#839-847">source</a></span><a href="#impl-Parse-for-LitByte" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitByte.html" title="struct syn::LitByte">LitByte</a></h3></section><section id="impl-Parse-for-LitByteStr" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lit.rs.html#828-836">source</a></span><a href="#impl-Parse-for-LitByteStr" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitByteStr.html" title="struct syn::LitByteStr">LitByteStr</a></h3></section><section id="impl-Parse-for-LitChar" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lit.rs.html#850-858">source</a></span><a href="#impl-Parse-for-LitChar" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitChar.html" title="struct syn::LitChar">LitChar</a></h3></section><section id="impl-Parse-for-LitFloat" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lit.rs.html#872-880">source</a></span><a href="#impl-Parse-for-LitFloat" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitFloat.html" title="struct syn::LitFloat">LitFloat</a></h3></section><section id="impl-Parse-for-LitInt" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lit.rs.html#861-869">source</a></span><a href="#impl-Parse-for-LitInt" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitInt.html" title="struct syn::LitInt">LitInt</a></h3></section><section id="impl-Parse-for-LitStr" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/lit.rs.html#817-825">source</a></span><a href="#impl-Parse-for-LitStr" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitStr.html" title="struct syn::LitStr">LitStr</a></h3></section><section id="impl-Parse-for-Macro" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/mac.rs.html#178-192">source</a></span><a href="#impl-Parse-for-Macro" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::<a class="struct" href="../struct.Macro.html" title="struct syn::Macro">Macro</a></h3></section><section id="impl-Parse-for-MetaList" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/attr.rs.html#566-571">source</a></span><a href="#impl-Parse-for-MetaList" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.MetaList.html" title="struct syn::MetaList">MetaList</a></h3></section><section id="impl-Parse-for-MetaNameValue" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/attr.rs.html#574-579">source</a></span><a href="#impl-Parse-for-MetaNameValue" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.MetaNameValue.html" title="struct syn::MetaNameValue">MetaNameValue</a></h3></section><section id="impl-Parse-for-MethodTurbofish" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/expr.rs.html#2120-2144">source</a></span><a href="#impl-Parse-for-MethodTurbofish" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.MethodTurbofish.html" title="struct syn::MethodTurbofish">MethodTurbofish</a></h3></section><section id="impl-Parse-for-ParenthesizedGenericArguments" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/path.rs.html#386-395">source</a></span><a href="#impl-Parse-for-ParenthesizedGenericArguments" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ParenthesizedGenericArguments.html" title="struct syn::ParenthesizedGenericArguments">ParenthesizedGenericArguments</a></h3></section><section id="impl-Parse-for-Path" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/path.rs.html#219-223">source</a></span><a href="#impl-Parse-for-Path" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Path.html" title="struct syn::Path">Path</a></h3></section><section id="impl-Parse-for-PathSegment" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/path.rs.html#398-402">source</a></span><a href="#impl-Parse-for-PathSegment" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.PathSegment.html" title="struct syn::PathSegment">PathSegment</a></h3></section><section id="impl-Parse-for-Receiver" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1585-1600">source</a></span><a href="#impl-Parse-for-Receiver" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Receiver.html" title="struct syn::Receiver">Receiver</a></h3></section><section id="impl-Parse-for-Signature" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#1501-1533">source</a></span><a href="#impl-Parse-for-Signature" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Signature.html" title="struct syn::Signature">Signature</a></h3></section><section id="impl-Parse-for-TraitBound" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#857-903">source</a></span><a href="#impl-Parse-for-TraitBound" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitBound.html" title="struct syn::TraitBound">TraitBound</a></h3></section><section id="impl-Parse-for-TraitItemConst" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2261-2288">source</a></span><a href="#impl-Parse-for-TraitItemConst" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemConst.html" title="struct syn::TraitItemConst">TraitItemConst</a></h3></section><section id="impl-Parse-for-TraitItemMacro" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2393-2408">source</a></span><a href="#impl-Parse-for-TraitItemMacro" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemMacro.html" title="struct syn::TraitItemMacro">TraitItemMacro</a></h3></section><section id="impl-Parse-for-TraitItemMethod" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2291-2317">source</a></span><a href="#impl-Parse-for-TraitItemMethod" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemMethod.html" title="struct syn::TraitItemMethod">TraitItemMethod</a></h3></section><section id="impl-Parse-for-TraitItemType" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/item.rs.html#2320-2361">source</a></span><a href="#impl-Parse-for-TraitItemType" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemType.html" title="struct syn::TraitItemType">TraitItemType</a></h3></section><section id="impl-Parse-for-TypeArray" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#668-678">source</a></span><a href="#impl-Parse-for-TypeArray" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeArray.html" title="struct syn::TypeArray">TypeArray</a></h3></section><section id="impl-Parse-for-TypeBareFn" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#717-722">source</a></span><a href="#impl-Parse-for-TypeBareFn" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeBareFn.html" title="struct syn::TypeBareFn">TypeBareFn</a></h3></section><section id="impl-Parse-for-TypeGroup" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#993-1001">source</a></span><a href="#impl-Parse-for-TypeGroup" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeGroup.html" title="struct syn::TypeGroup">TypeGroup</a></h3></section><section id="impl-Parse-for-TypeImplTrait" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#950-955">source</a></span><a href="#impl-Parse-for-TypeImplTrait" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeImplTrait.html" title="struct syn::TypeImplTrait">TypeImplTrait</a></h3></section><section id="impl-Parse-for-TypeInfer" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#787-793">source</a></span><a href="#impl-Parse-for-TypeInfer" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeInfer.html" title="struct syn::TypeInfer">TypeInfer</a></h3></section><section id="impl-Parse-for-TypeMacro" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#829-835">source</a></span><a href="#impl-Parse-for-TypeMacro" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeMacro.html" title="struct syn::TypeMacro">TypeMacro</a></h3></section><section id="impl-Parse-for-TypeNever" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#778-784">source</a></span><a href="#impl-Parse-for-TypeNever" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeNever.html" title="struct syn::TypeNever">TypeNever</a></h3></section><section id="impl-Parse-for-TypeParam" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#759-810">source</a></span><a href="#impl-Parse-for-TypeParam" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeParam.html" title="struct syn::TypeParam">TypeParam</a></h3></section><section id="impl-Parse-for-TypeParen" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#1004-1009">source</a></span><a href="#impl-Parse-for-TypeParen" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeParen.html" title="struct syn::TypeParen">TypeParen</a></h3></section><section id="impl-Parse-for-TypePath" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#838-866">source</a></span><a href="#impl-Parse-for-TypePath" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypePath.html" title="struct syn::TypePath">TypePath</a></h3></section><section id="impl-Parse-for-TypePtr" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#681-701">source</a></span><a href="#impl-Parse-for-TypePtr" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypePtr.html" title="struct syn::TypePtr">TypePtr</a></h3></section><section id="impl-Parse-for-TypeReference" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#704-714">source</a></span><a href="#impl-Parse-for-TypeReference" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeReference.html" title="struct syn::TypeReference">TypeReference</a></h3></section><section id="impl-Parse-for-TypeSlice" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#657-665">source</a></span><a href="#impl-Parse-for-TypeSlice" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeSlice.html" title="struct syn::TypeSlice">TypeSlice</a></h3></section><section id="impl-Parse-for-TypeTraitObject" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#896-901">source</a></span><a href="#impl-Parse-for-TypeTraitObject" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeTraitObject.html" title="struct syn::TypeTraitObject">TypeTraitObject</a></h3></section><section id="impl-Parse-for-TypeTuple" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/ty.rs.html#796-826">source</a></span><a href="#impl-Parse-for-TypeTuple" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeTuple.html" title="struct syn::TypeTuple">TypeTuple</a></h3></section><section id="impl-Parse-for-Variant" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/data.rs.html#247-273">source</a></span><a href="#impl-Parse-for-Variant" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Variant.html" title="struct syn::Variant">Variant</a></h3></section><section id="impl-Parse-for-WhereClause" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/generics.rs.html#941-969">source</a></span><a href="#impl-Parse-for-WhereClause" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a></h3></section><section id="impl-Parse-for-Abstract" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Abstract" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Abstract.html" title="struct syn::token::Abstract">Abstract</a></h3></section><section id="impl-Parse-for-Add" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Add" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Add.html" title="struct syn::token::Add">Add</a></h3></section><section id="impl-Parse-for-AddEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-AddEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.AddEq.html" title="struct syn::token::AddEq">AddEq</a></h3></section><section id="impl-Parse-for-And" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-And" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.And.html" title="struct syn::token::And">And</a></h3></section><section id="impl-Parse-for-AndAnd" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-AndAnd" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.AndAnd.html" title="struct syn::token::AndAnd">AndAnd</a></h3></section><section id="impl-Parse-for-AndEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-AndEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.AndEq.html" title="struct syn::token::AndEq">AndEq</a></h3></section><section id="impl-Parse-for-As" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-As" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.As.html" title="struct syn::token::As">As</a></h3></section><section id="impl-Parse-for-Async" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Async" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Async.html" title="struct syn::token::Async">Async</a></h3></section><section id="impl-Parse-for-At" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-At" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.At.html" title="struct syn::token::At">At</a></h3></section><section id="impl-Parse-for-Auto" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Auto" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Auto.html" title="struct syn::token::Auto">Auto</a></h3></section><section id="impl-Parse-for-Await" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Await" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Await.html" title="struct syn::token::Await">Await</a></h3></section><section id="impl-Parse-for-Bang" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Bang" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Bang.html" title="struct syn::token::Bang">Bang</a></h3></section><section id="impl-Parse-for-Become" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Become" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Become.html" title="struct syn::token::Become">Become</a></h3></section><section id="impl-Parse-for-Box" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Box" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Box.html" title="struct syn::token::Box">Box</a></h3></section><section id="impl-Parse-for-Break" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Break" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Break.html" title="struct syn::token::Break">Break</a></h3></section><section id="impl-Parse-for-Caret" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Caret" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Caret.html" title="struct syn::token::Caret">Caret</a></h3></section><section id="impl-Parse-for-CaretEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-CaretEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.CaretEq.html" title="struct syn::token::CaretEq">CaretEq</a></h3></section><section id="impl-Parse-for-Colon2" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Colon2" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Colon2.html" title="struct syn::token::Colon2">Colon2</a></h3></section><section id="impl-Parse-for-Colon" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Colon" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Colon.html" title="struct syn::token::Colon">Colon</a></h3></section><section id="impl-Parse-for-Comma" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Comma" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Comma.html" title="struct syn::token::Comma">Comma</a></h3></section><section id="impl-Parse-for-Const" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Const" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Const.html" title="struct syn::token::Const">Const</a></h3></section><section id="impl-Parse-for-Continue" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Continue" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Continue.html" title="struct syn::token::Continue">Continue</a></h3></section><section id="impl-Parse-for-Crate" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Crate" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Crate.html" title="struct syn::token::Crate">Crate</a></h3></section><section id="impl-Parse-for-Default" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Default" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Default.html" title="struct syn::token::Default">Default</a></h3></section><section id="impl-Parse-for-Div" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Div" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Div.html" title="struct syn::token::Div">Div</a></h3></section><section id="impl-Parse-for-DivEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-DivEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DivEq.html" title="struct syn::token::DivEq">DivEq</a></h3></section><section id="impl-Parse-for-Do" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Do" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Do.html" title="struct syn::token::Do">Do</a></h3></section><section id="impl-Parse-for-Dollar" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Dollar" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dollar.html" title="struct syn::token::Dollar">Dollar</a></h3></section><section id="impl-Parse-for-Dot2" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Dot2" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dot2.html" title="struct syn::token::Dot2">Dot2</a></h3></section><section id="impl-Parse-for-Dot3" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Dot3" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dot3.html" title="struct syn::token::Dot3">Dot3</a></h3></section><section id="impl-Parse-for-Dot" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Dot" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dot.html" title="struct syn::token::Dot">Dot</a></h3></section><section id="impl-Parse-for-DotDotEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-DotDotEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DotDotEq.html" title="struct syn::token::DotDotEq">DotDotEq</a></h3></section><section id="impl-Parse-for-Dyn" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Dyn" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dyn.html" title="struct syn::token::Dyn">Dyn</a></h3></section><section id="impl-Parse-for-Else" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Else" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Else.html" title="struct syn::token::Else">Else</a></h3></section><section id="impl-Parse-for-Enum" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Enum" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Enum.html" title="struct syn::token::Enum">Enum</a></h3></section><section id="impl-Parse-for-Eq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Eq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Eq.html" title="struct syn::token::Eq">Eq</a></h3></section><section id="impl-Parse-for-EqEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-EqEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.EqEq.html" title="struct syn::token::EqEq">EqEq</a></h3></section><section id="impl-Parse-for-Extern" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Extern" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Extern.html" title="struct syn::token::Extern">Extern</a></h3></section><section id="impl-Parse-for-FatArrow" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-FatArrow" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.FatArrow.html" title="struct syn::token::FatArrow">FatArrow</a></h3></section><section id="impl-Parse-for-Final" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Final" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Final.html" title="struct syn::token::Final">Final</a></h3></section><section id="impl-Parse-for-Fn" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Fn" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Fn.html" title="struct syn::token::Fn">Fn</a></h3></section><section id="impl-Parse-for-For" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-For" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.For.html" title="struct syn::token::For">For</a></h3></section><section id="impl-Parse-for-Ge" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Ge" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ge.html" title="struct syn::token::Ge">Ge</a></h3></section><section id="impl-Parse-for-Gt" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Gt" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Gt.html" title="struct syn::token::Gt">Gt</a></h3></section><section id="impl-Parse-for-If" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-If" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.If.html" title="struct syn::token::If">If</a></h3></section><section id="impl-Parse-for-Impl" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Impl" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Impl.html" title="struct syn::token::Impl">Impl</a></h3></section><section id="impl-Parse-for-In" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-In" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.In.html" title="struct syn::token::In">In</a></h3></section><section id="impl-Parse-for-LArrow" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-LArrow" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.LArrow.html" title="struct syn::token::LArrow">LArrow</a></h3></section><section id="impl-Parse-for-Le" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Le" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Le.html" title="struct syn::token::Le">Le</a></h3></section><section id="impl-Parse-for-Let" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Let" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Let.html" title="struct syn::token::Let">Let</a></h3></section><section id="impl-Parse-for-Loop" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Loop" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Loop.html" title="struct syn::token::Loop">Loop</a></h3></section><section id="impl-Parse-for-Lt" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Lt" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Lt.html" title="struct syn::token::Lt">Lt</a></h3></section><section id="impl-Parse-for-Macro-1" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Macro-1" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Macro.html" title="struct syn::token::Macro">Macro</a></h3></section><section id="impl-Parse-for-Match" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Match" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Match.html" title="struct syn::token::Match">Match</a></h3></section><section id="impl-Parse-for-Mod" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Mod" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Mod.html" title="struct syn::token::Mod">Mod</a></h3></section><section id="impl-Parse-for-Move" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Move" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Move.html" title="struct syn::token::Move">Move</a></h3></section><section id="impl-Parse-for-MulEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-MulEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.MulEq.html" title="struct syn::token::MulEq">MulEq</a></h3></section><section id="impl-Parse-for-Mut" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Mut" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Mut.html" title="struct syn::token::Mut">Mut</a></h3></section><section id="impl-Parse-for-Ne" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Ne" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ne.html" title="struct syn::token::Ne">Ne</a></h3></section><section id="impl-Parse-for-Or" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Or" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Or.html" title="struct syn::token::Or">Or</a></h3></section><section id="impl-Parse-for-OrEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-OrEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.OrEq.html" title="struct syn::token::OrEq">OrEq</a></h3></section><section id="impl-Parse-for-OrOr" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-OrOr" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.OrOr.html" title="struct syn::token::OrOr">OrOr</a></h3></section><section id="impl-Parse-for-Override" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Override" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Override.html" title="struct syn::token::Override">Override</a></h3></section><section id="impl-Parse-for-Pound" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Pound" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Pound.html" title="struct syn::token::Pound">Pound</a></h3></section><section id="impl-Parse-for-Priv" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Priv" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Priv.html" title="struct syn::token::Priv">Priv</a></h3></section><section id="impl-Parse-for-Pub" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Pub" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Pub.html" title="struct syn::token::Pub">Pub</a></h3></section><section id="impl-Parse-for-Question" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Question" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Question.html" title="struct syn::token::Question">Question</a></h3></section><section id="impl-Parse-for-RArrow" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-RArrow" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.RArrow.html" title="struct syn::token::RArrow">RArrow</a></h3></section><section id="impl-Parse-for-Ref" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Ref" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ref.html" title="struct syn::token::Ref">Ref</a></h3></section><section id="impl-Parse-for-Rem" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Rem" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Rem.html" title="struct syn::token::Rem">Rem</a></h3></section><section id="impl-Parse-for-RemEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-RemEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.RemEq.html" title="struct syn::token::RemEq">RemEq</a></h3></section><section id="impl-Parse-for-Return" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Return" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Return.html" title="struct syn::token::Return">Return</a></h3></section><section id="impl-Parse-for-SelfType" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-SelfType" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SelfType.html" title="struct syn::token::SelfType">SelfType</a></h3></section><section id="impl-Parse-for-SelfValue" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-SelfValue" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SelfValue.html" title="struct syn::token::SelfValue">SelfValue</a></h3></section><section id="impl-Parse-for-Semi" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Semi" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Semi.html" title="struct syn::token::Semi">Semi</a></h3></section><section id="impl-Parse-for-Shl" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Shl" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Shl.html" title="struct syn::token::Shl">Shl</a></h3></section><section id="impl-Parse-for-ShlEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-ShlEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.ShlEq.html" title="struct syn::token::ShlEq">ShlEq</a></h3></section><section id="impl-Parse-for-Shr" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Shr" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Shr.html" title="struct syn::token::Shr">Shr</a></h3></section><section id="impl-Parse-for-ShrEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-ShrEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.ShrEq.html" title="struct syn::token::ShrEq">ShrEq</a></h3></section><section id="impl-Parse-for-Star" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Star" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Star.html" title="struct syn::token::Star">Star</a></h3></section><section id="impl-Parse-for-Static" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Static" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Static.html" title="struct syn::token::Static">Static</a></h3></section><section id="impl-Parse-for-Struct" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Struct" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Struct.html" title="struct syn::token::Struct">Struct</a></h3></section><section id="impl-Parse-for-Sub" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Sub" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Sub.html" title="struct syn::token::Sub">Sub</a></h3></section><section id="impl-Parse-for-SubEq" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-SubEq" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SubEq.html" title="struct syn::token::SubEq">SubEq</a></h3></section><section id="impl-Parse-for-Super" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Super" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Super.html" title="struct syn::token::Super">Super</a></h3></section><section id="impl-Parse-for-Tilde" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#707-754">source</a></span><a href="#impl-Parse-for-Tilde" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Tilde.html" title="struct syn::token::Tilde">Tilde</a></h3></section><section id="impl-Parse-for-Trait" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Trait" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Trait.html" title="struct syn::token::Trait">Trait</a></h3></section><section id="impl-Parse-for-Try" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Try" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Try.html" title="struct syn::token::Try">Try</a></h3></section><section id="impl-Parse-for-Type-1" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Type-1" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Type.html" title="struct syn::token::Type">Type</a></h3></section><section id="impl-Parse-for-Typeof" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Typeof" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Typeof.html" title="struct syn::token::Typeof">Typeof</a></h3></section><section id="impl-Parse-for-Underscore" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#570-586">source</a></span><a href="#impl-Parse-for-Underscore" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Underscore.html" title="struct syn::token::Underscore">Underscore</a></h3></section><section id="impl-Parse-for-Union" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Union" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Union.html" title="struct syn::token::Union">Union</a></h3></section><section id="impl-Parse-for-Unsafe" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Unsafe" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Unsafe.html" title="struct syn::token::Unsafe">Unsafe</a></h3></section><section id="impl-Parse-for-Unsized" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Unsized" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Unsized.html" title="struct syn::token::Unsized">Unsized</a></h3></section><section id="impl-Parse-for-Use" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Use" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Use.html" title="struct syn::token::Use">Use</a></h3></section><section id="impl-Parse-for-Virtual" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Virtual" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Virtual.html" title="struct syn::token::Virtual">Virtual</a></h3></section><section id="impl-Parse-for-Where" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Where" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Where.html" title="struct syn::token::Where">Where</a></h3></section><section id="impl-Parse-for-While" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-While" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.While.html" title="struct syn::token::While">While</a></h3></section><section id="impl-Parse-for-Yield" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/token.rs.html#652-705">source</a></span><a href="#impl-Parse-for-Yield" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Yield.html" title="struct syn::token::Yield">Yield</a></h3></section><section id="impl-Parse-for-Nothing" class="impl has-srclink"><span class="rightside"><a class="srclink" href="../../src/syn/parse.rs.html#1284-1288">source</a></span><a href="#impl-Parse-for-Nothing" class="anchor"></a><h3 class="code-header in-band">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="struct.Nothing.html" title="struct syn::parse::Nothing">Nothing</a></h3></section></div><script type="text/javascript" src="../../implementors/syn/parse/trait.Parse.js" data-ignore-extern-crates="proc_macro2,core,alloc" 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.64.0 (a55dd71d5 2022-09-19)" ></div></body></html>