mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-10 01:58:23 +00:00
9 lines
114 KiB
HTML
9 lines
114 KiB
HTML
<!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."><title>Parse in syn::parse - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/FiraSans-Regular-018c141bf0843ffd.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/FiraSans-Medium-8f9a781e4970d388.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2"><link rel="stylesheet" href="../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../static.files/rustdoc-ac92e1bbe349e143.css"><meta name="rustdoc-vars" data-root-path="../../" data-static-root-path="../../static.files/" data-current-crate="syn" data-themes="" data-resource-suffix="" data-rustdoc-version="1.76.0 (07dca489a 2024-02-04)" data-channel="1.76.0" data-search-js="search-2b6ce74ff89ae146.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../../static.files/storage-f2adc0d6ca4d09fb.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../static.files/main-305769736d49e732.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-feafe1bb7466e4bd.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-16x16-8b506e7a72182f1c.png"><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../static.files/favicon-2c020d218678b618.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">☰</button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../syn/index.html">syn</a><span class="version">2.0.51</span></h2></div><h2 class="location"><a href="#">Parse</a></h2><div class="sidebar-elems"><section><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.parse">parse</a></li></ul><h3><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul class="block"><li><a href="#impl-Parse-for-Box%3CT%3E">Box<T></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<Abi></a></li><li><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E">Option<BoundLifetimes></a></li><li><a href="#impl-Parse-for-Option%3CLabel%3E">Option<Label></a></li><li><a href="#impl-Parse-for-Option%3CT%3E">Option<T></a></li><li><a href="#impl-Parse-for-Option%3CWhereClause%3E">Option<WhereClause></a></li><li><a href="#impl-Parse-for-Punct">Punct</a></li><li><a href="#impl-Parse-for-TokenStream">TokenStream</a></li><li><a href="#impl-Parse-for-TokenTree">TokenTree</a></li></ul><h3><a href="#object-safety">Object Safety</a></h3><h3><a href="#implementors">Implementors</a></h3></section><h2><a href="index.html">In syn::parse</a></h2></div></nav><div class="sidebar-resizer"></div>
|
||
<main><div class="width-limiter"><nav class="sub"><form class="search-form"><span></span><div id="sidebar-button" tabindex="-1"><a href="../../syn/all.html" title="show sidebar"></a></div><input class="search-input" name="search" aria-label="Run search in the documentation" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"><div id="help-button" tabindex="-1"><a href="../../help.html" title="help">?</a></div><div id="settings-menu" tabindex="-1"><a href="../../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../../static.files/wheel-7b819b6101059cd0.svg"></a></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1>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" title="Copy item path to clipboard"><img src="../../static.files/clipboard-7571035ce49a181d.svg" width="19" height="18" alt="Copy item path"></button></h1><span class="out-of-band"><a class="src" href="../../src/syn/parse.rs.html#211-213">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>−</span>]</button></span></div><pre class="rust item-decl"><code>pub trait Parse: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> {
|
||
// Required method
|
||
fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self>;
|
||
}</code></pre><details class="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" title="mod syn::parse">module documentation</a> for details about implementing and using
|
||
the <code>Parse</code> trait.</p>
|
||
</div></details><h2 id="required-methods" class="section-header">Required Methods<a href="#required-methods" class="anchor">§</a></h2><div class="methods"><section id="tymethod.parse" class="method"><a class="src rightside" href="../../src/syn/parse.rs.html#212">source</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div><h2 id="object-safety" class="section-header">Object Safety<a href="#object-safety" class="anchor">§</a></h2><div class="object-safety-info">This trait is <b>not</b> <a href="https://doc.rust-lang.org/1.76.0/reference/items/traits.html#object-safety">object safe</a>.</div><h2 id="foreign-impls" class="section-header">Implementations on Foreign Types<a href="#foreign-impls" class="anchor">§</a></h2><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-TokenTree" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1187-1194">source</a><a href="#impl-Parse-for-TokenTree" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../../proc_macro2/enum.TokenTree.html" title="enum proc_macro2::TokenTree">TokenTree</a></h3></section></summary><div class="impl-items"><section id="method.parse" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1188-1193">source</a><a href="#method.parse" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CAbi%3E" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#1006-1014">source</a><a href="#impl-Parse-for-Option%3CAbi%3E" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="../struct.Abi.html" title="struct syn::Abi">Abi</a>></h3></section></summary><div class="impl-items"><section id="method.parse-1" class="method trait-impl"><a class="src rightside" href="../../src/syn/ty.rs.html#1007-1013">source</a><a href="#method.parse-1" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CBoundLifetimes%3E" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#715-723">source</a><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="../struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a>></h3></section></summary><div class="impl-items"><section id="method.parse-2" class="method trait-impl"><a class="src rightside" href="../../src/syn/generics.rs.html#716-722">source</a><a href="#method.parse-2" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CLabel%3E" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2597-2605">source</a><a href="#impl-Parse-for-Option%3CLabel%3E" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="../struct.Label.html" title="struct syn::Label">Label</a>></h3></section></summary><div class="impl-items"><section id="method.parse-3" class="method trait-impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2598-2604">source</a><a href="#method.parse-3" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CWhereClause%3E" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#918-926">source</a><a href="#impl-Parse-for-Option%3CWhereClause%3E" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="../struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a>></h3></section></summary><div class="impl-items"><section id="method.parse-4" class="method trait-impl"><a class="src rightside" href="../../src/syn/generics.rs.html#919-925">source</a><a href="#method.parse-4" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Group" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1197-1208">source</a><a href="#impl-Parse-for-Group" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Group.html" title="struct proc_macro2::Group">Group</a></h3></section></summary><div class="impl-items"><section id="method.parse-5" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1198-1207">source</a><a href="#method.parse-5" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Literal" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1221-1228">source</a><a href="#impl-Parse-for-Literal" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Literal.html" title="struct proc_macro2::Literal">Literal</a></h3></section></summary><div class="impl-items"><section id="method.parse-6" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1222-1227">source</a><a href="#method.parse-6" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Punct" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1211-1218">source</a><a href="#impl-Parse-for-Punct" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Punct.html" title="struct proc_macro2::Punct">Punct</a></h3></section></summary><div class="impl-items"><section id="method.parse-7" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1212-1217">source</a><a href="#method.parse-7" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-TokenStream" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1180-1184">source</a><a href="#impl-Parse-for-TokenStream" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.TokenStream.html" title="struct proc_macro2::TokenStream">TokenStream</a></h3></section></summary><div class="impl-items"><section id="method.parse-8" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1181-1183">source</a><a href="#method.parse-8" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CT%3E" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1169-1177">source</a><a href="#impl-Parse-for-Option%3CT%3E" class="anchor">§</a><h3 class="code-header">impl<T: <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>> <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.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a><T></h3></section></summary><div class="impl-items"><section id="method.parse-9" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1170-1176">source</a><a href="#method.parse-9" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Box%3CT%3E" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1162-1166">source</a><a href="#impl-Parse-for-Box%3CT%3E" class="anchor">§</a><h3 class="code-header">impl<T: <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a>> <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.76.0/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><T></h3></section></summary><div class="impl-items"><section id="method.parse-10" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1163-1165">source</a><a href="#method.parse-10" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a><Self></h4></section></div></details><h2 id="implementors" class="section-header">Implementors<a href="#implementors" class="anchor">§</a></h2><div id="implementors-list"><section id="impl-Parse-for-BinOp" class="impl"><a class="src rightside" href="../../src/syn/op.rs.html#86-148">source</a><a href="#impl-Parse-for-BinOp" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.BinOp.html" title="enum syn::BinOp">BinOp</a></h3></section><section id="impl-Parse-for-Expr" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#1092-1100">source</a><a href="#impl-Parse-for-Expr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Expr.html" title="enum syn::Expr">Expr</a></h3></section><section id="impl-Parse-for-FnArg" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1559-1568">source</a><a href="#impl-Parse-for-FnArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.FnArg.html" title="enum syn::FnArg">FnArg</a></h3></section><section id="impl-Parse-for-ForeignItem" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1814-1890">source</a><a href="#impl-Parse-for-ForeignItem" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ForeignItem.html" title="enum syn::ForeignItem">ForeignItem</a></h3></section><section id="impl-Parse-for-GenericArgument" class="impl"><a class="src rightside" href="../../src/syn/path.rs.html#316-400">source</a><a href="#impl-Parse-for-GenericArgument" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.GenericArgument.html" title="enum syn::GenericArgument">GenericArgument</a></h3></section><section id="impl-Parse-for-GenericParam" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#621-645">source</a><a href="#impl-Parse-for-GenericParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.GenericParam.html" title="enum syn::GenericParam">GenericParam</a></h3></section><section id="impl-Parse-for-ImplItem" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2614-2706">source</a><a href="#impl-Parse-for-ImplItem" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ImplItem.html" title="enum syn::ImplItem">ImplItem</a></h3></section><section id="impl-Parse-for-Item" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#938-944">source</a><a href="#impl-Parse-for-Item" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Item.html" title="enum syn::Item">Item</a></h3></section><section id="impl-Parse-for-Lit" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#800-829">source</a><a href="#impl-Parse-for-Lit" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Lit.html" title="enum syn::Lit">Lit</a></h3></section><section id="impl-Parse-for-Member" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2872-2882">source</a><a href="#impl-Parse-for-Member" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Member.html" title="enum syn::Member">Member</a></h3></section><section id="impl-Parse-for-Meta" class="impl"><a class="src rightside" href="../../src/syn/attr.rs.html#668-673">source</a><a href="#impl-Parse-for-Meta" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Meta.html" title="enum syn::Meta">Meta</a></h3></section><section id="impl-Parse-for-RangeLimits" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2821-2835">source</a><a href="#impl-Parse-for-RangeLimits" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.RangeLimits.html" title="enum syn::RangeLimits">RangeLimits</a></h3></section><section id="impl-Parse-for-ReturnType" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#788-793">source</a><a href="#impl-Parse-for-ReturnType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.ReturnType.html" title="enum syn::ReturnType">ReturnType</a></h3></section><section id="impl-Parse-for-StaticMutability" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2885-2890">source</a><a href="#impl-Parse-for-StaticMutability" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.StaticMutability.html" title="enum syn::StaticMutability">StaticMutability</a></h3></section><section id="impl-Parse-for-Stmt" class="impl"><a class="src rightside" href="../../src/syn/stmt.rs.html#190-195">source</a><a href="#impl-Parse-for-Stmt" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Stmt.html" title="enum syn::Stmt">Stmt</a></h3></section><section id="impl-Parse-for-TraitBoundModifier" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#852-860">source</a><a href="#impl-Parse-for-TraitBoundModifier" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TraitBoundModifier.html" title="enum syn::TraitBoundModifier">TraitBoundModifier</a></h3></section><section id="impl-Parse-for-TraitItem" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2276-2358">source</a><a href="#impl-Parse-for-TraitItem" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TraitItem.html" title="enum syn::TraitItem">TraitItem</a></h3></section><section id="impl-Parse-for-Type" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#296-302">source</a><a href="#impl-Parse-for-Type" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::<a class="enum" href="../enum.Type.html" title="enum syn::Type">Type</a></h3></section><section id="impl-Parse-for-TypeParamBound" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#767-798">source</a><a href="#impl-Parse-for-TypeParamBound" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.TypeParamBound.html" title="enum syn::TypeParamBound">TypeParamBound</a></h3></section><section id="impl-Parse-for-UnOp" class="impl"><a class="src rightside" href="../../src/syn/op.rs.html#151-164">source</a><a href="#impl-Parse-for-UnOp" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.UnOp.html" title="enum syn::UnOp">UnOp</a></h3></section><section id="impl-Parse-for-UseTree" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1352-1357">source</a><a href="#impl-Parse-for-UseTree" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.UseTree.html" title="enum syn::UseTree">UseTree</a></h3></section><section id="impl-Parse-for-Visibility" class="impl"><a class="src rightside" href="../../src/syn/restriction.rs.html#71-90">source</a><a href="#impl-Parse-for-Visibility" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.Visibility.html" title="enum syn::Visibility">Visibility</a></h3></section><section id="impl-Parse-for-WherePredicate" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#929-988">source</a><a href="#impl-Parse-for-WherePredicate" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../enum.WherePredicate.html" title="enum syn::WherePredicate">WherePredicate</a></h3></section><section id="impl-Parse-for-Abi" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#996-1003">source</a><a href="#impl-Parse-for-Abi" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Abi.html" title="struct syn::Abi">Abi</a></h3></section><section id="impl-Parse-for-AngleBracketedGenericArguments" class="impl"><a class="src rightside" href="../../src/syn/path.rs.html#481-486">source</a><a href="#impl-Parse-for-AngleBracketedGenericArguments" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.AngleBracketedGenericArguments.html" title="struct syn::AngleBracketedGenericArguments">AngleBracketedGenericArguments</a></h3></section><section id="impl-Parse-for-Arm" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2886-2916">source</a><a href="#impl-Parse-for-Arm" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Arm.html" title="struct syn::Arm">Arm</a></h3></section><section id="impl-Parse-for-BareFnArg" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#925-930">source</a><a href="#impl-Parse-for-BareFnArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.BareFnArg.html" title="struct syn::BareFnArg">BareFnArg</a></h3></section><section id="impl-Parse-for-Block" class="impl"><a class="src rightside" href="../../src/syn/stmt.rs.html#179-187">source</a><a href="#impl-Parse-for-Block" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Block.html" title="struct syn::Block">Block</a></h3></section><section id="impl-Parse-for-BoundLifetimes" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#686-712">source</a><a href="#impl-Parse-for-BoundLifetimes" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a></h3></section><section id="impl-Parse-for-ConstParam" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#863-884">source</a><a href="#impl-Parse-for-ConstParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ConstParam.html" title="struct syn::ConstParam">ConstParam</a></h3></section><section id="impl-Parse-for-DeriveInput" class="impl"><a class="src rightside" href="../../src/syn/derive.rs.html#80-146">source</a><a href="#impl-Parse-for-DeriveInput" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.DeriveInput.html" title="struct syn::DeriveInput">DeriveInput</a></h3></section><section id="impl-Parse-for-ExprArray" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#1974-1996">source</a><a href="#impl-Parse-for-ExprArray" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprArray.html" title="struct syn::ExprArray">ExprArray</a></h3></section><section id="impl-Parse-for-ExprAssign" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprAssign" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAssign.html" title="struct syn::ExprAssign">ExprAssign</a></h3></section><section id="impl-Parse-for-ExprAsync" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2494-2503">source</a><a href="#impl-Parse-for-ExprAsync" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAsync.html" title="struct syn::ExprAsync">ExprAsync</a></h3></section><section id="impl-Parse-for-ExprAwait" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprAwait" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprAwait.html" title="struct syn::ExprAwait">ExprAwait</a></h3></section><section id="impl-Parse-for-ExprBinary" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprBinary" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBinary.html" title="struct syn::ExprBinary">ExprBinary</a></h3></section><section id="impl-Parse-for-ExprBlock" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2778-2794">source</a><a href="#impl-Parse-for-ExprBlock" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBlock.html" title="struct syn::ExprBlock">ExprBlock</a></h3></section><section id="impl-Parse-for-ExprBreak" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2390-2395">source</a><a href="#impl-Parse-for-ExprBreak" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprBreak.html" title="struct syn::ExprBreak">ExprBreak</a></h3></section><section id="impl-Parse-for-ExprCall" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprCall" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprCall.html" title="struct syn::ExprCall">ExprCall</a></h3></section><section id="impl-Parse-for-ExprCast" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprCast" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprCast.html" title="struct syn::ExprCast">ExprCast</a></h3></section><section id="impl-Parse-for-ExprClosure" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2367-2372">source</a><a href="#impl-Parse-for-ExprClosure" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprClosure.html" title="struct syn::ExprClosure">ExprClosure</a></h3></section><section id="impl-Parse-for-ExprConst" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2567-2582">source</a><a href="#impl-Parse-for-ExprConst" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprConst.html" title="struct syn::ExprConst">ExprConst</a></h3></section><section id="impl-Parse-for-ExprContinue" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2609-2617">source</a><a href="#impl-Parse-for-ExprContinue" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprContinue.html" title="struct syn::ExprContinue">ExprContinue</a></h3></section><section id="impl-Parse-for-ExprField" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprField" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprField.html" title="struct syn::ExprField">ExprField</a></h3></section><section id="impl-Parse-for-ExprForLoop" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2226-2252">source</a><a href="#impl-Parse-for-ExprForLoop" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprForLoop.html" title="struct syn::ExprForLoop">ExprForLoop</a></h3></section><section id="impl-Parse-for-ExprIf" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2174-2191">source</a><a href="#impl-Parse-for-ExprIf" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprIf.html" title="struct syn::ExprIf">ExprIf</a></h3></section><section id="impl-Parse-for-ExprIndex" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprIndex" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprIndex.html" title="struct syn::ExprIndex">ExprIndex</a></h3></section><section id="impl-Parse-for-ExprInfer" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2215-2222">source</a><a href="#impl-Parse-for-ExprInfer" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprInfer.html" title="struct syn::ExprInfer">ExprInfer</a></h3></section><section id="impl-Parse-for-ExprLet" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2156-2170">source</a><a href="#impl-Parse-for-ExprLet" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLet.html" title="struct syn::ExprLet">ExprLet</a></h3></section><section id="impl-Parse-for-ExprLit" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2094-2101">source</a><a href="#impl-Parse-for-ExprLit" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLit.html" title="struct syn::ExprLit">ExprLit</a></h3></section><section id="impl-Parse-for-ExprLoop" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2256-2274">source</a><a href="#impl-Parse-for-ExprLoop" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprLoop.html" title="struct syn::ExprLoop">ExprLoop</a></h3></section><section id="impl-Parse-for-ExprMacro" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#1879-1886">source</a><a href="#impl-Parse-for-ExprMacro" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMacro.html" title="struct syn::ExprMacro">ExprMacro</a></h3></section><section id="impl-Parse-for-ExprMatch" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2278-2301">source</a><a href="#impl-Parse-for-ExprMatch" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMatch.html" title="struct syn::ExprMatch">ExprMatch</a></h3></section><section id="impl-Parse-for-ExprMethodCall" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprMethodCall" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprMethodCall.html" title="struct syn::ExprMethodCall">ExprMethodCall</a></h3></section><section id="impl-Parse-for-ExprParen" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2139-2143">source</a><a href="#impl-Parse-for-ExprParen" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprParen.html" title="struct syn::ExprParen">ExprParen</a></h3></section><section id="impl-Parse-for-ExprPath" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2858-2869">source</a><a href="#impl-Parse-for-ExprPath" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprPath.html" title="struct syn::ExprPath">ExprPath</a></h3></section><section id="impl-Parse-for-ExprRange" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprRange" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprRange.html" title="struct syn::ExprRange">ExprRange</a></h3></section><section id="impl-Parse-for-ExprReference" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2376-2386">source</a><a href="#impl-Parse-for-ExprReference" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprReference.html" title="struct syn::ExprReference">ExprReference</a></h3></section><section id="impl-Parse-for-ExprRepeat" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2000-2011">source</a><a href="#impl-Parse-for-ExprRepeat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprRepeat.html" title="struct syn::ExprRepeat">ExprRepeat</a></h3></section><section id="impl-Parse-for-ExprReturn" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2399-2404">source</a><a href="#impl-Parse-for-ExprReturn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprReturn.html" title="struct syn::ExprReturn">ExprReturn</a></h3></section><section id="impl-Parse-for-ExprStruct" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2705-2710">source</a><a href="#impl-Parse-for-ExprStruct" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprStruct.html" title="struct syn::ExprStruct">ExprStruct</a></h3></section><section id="impl-Parse-for-ExprTry" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprTry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTry.html" title="struct syn::ExprTry">ExprTry</a></h3></section><section id="impl-Parse-for-ExprTryBlock" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2408-2416">source</a><a href="#impl-Parse-for-ExprTryBlock" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTryBlock.html" title="struct syn::ExprTryBlock">ExprTryBlock</a></h3></section><section id="impl-Parse-for-ExprTuple" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2328-2340">source</a><a href="#impl-Parse-for-ExprTuple" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprTuple.html" title="struct syn::ExprTuple">ExprTuple</a></h3></section><section id="impl-Parse-for-ExprUnary" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2344-2350">source</a><a href="#impl-Parse-for-ExprUnary" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprUnary.html" title="struct syn::ExprUnary">ExprUnary</a></h3></section><section id="impl-Parse-for-ExprUnsafe" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2759-2774">source</a><a href="#impl-Parse-for-ExprUnsafe" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprUnsafe.html" title="struct syn::ExprUnsafe">ExprUnsafe</a></h3></section><section id="impl-Parse-for-ExprWhile" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2543-2563">source</a><a href="#impl-Parse-for-ExprWhile" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprWhile.html" title="struct syn::ExprWhile">ExprWhile</a></h3></section><section id="impl-Parse-for-ExprYield" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2420-2434">source</a><a href="#impl-Parse-for-ExprYield" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ExprYield.html" title="struct syn::ExprYield">ExprYield</a></h3></section><section id="impl-Parse-for-FieldValue" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2676-2702">source</a><a href="#impl-Parse-for-FieldValue" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldValue.html" title="struct syn::FieldValue">FieldValue</a></h3></section><section id="impl-Parse-for-FieldsNamed" class="impl"><a class="src rightside" href="../../src/syn/data.rs.html#299-307">source</a><a href="#impl-Parse-for-FieldsNamed" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldsNamed.html" title="struct syn::FieldsNamed">FieldsNamed</a></h3></section><section id="impl-Parse-for-FieldsUnnamed" class="impl"><a class="src rightside" href="../../src/syn/data.rs.html#310-318">source</a><a href="#impl-Parse-for-FieldsUnnamed" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.FieldsUnnamed.html" title="struct syn::FieldsUnnamed">FieldsUnnamed</a></h3></section><section id="impl-Parse-for-File" class="impl"><a class="src rightside" href="../../src/syn/file.rs.html#99-113">source</a><a href="#impl-Parse-for-File" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.File.html" title="struct syn::File">File</a></h3></section><section id="impl-Parse-for-ForeignItemFn" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1893-1906">source</a><a href="#impl-Parse-for-ForeignItemFn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemFn.html" title="struct syn::ForeignItemFn">ForeignItemFn</a></h3></section><section id="impl-Parse-for-ForeignItemMacro" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1974-1989">source</a><a href="#impl-Parse-for-ForeignItemMacro" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemMacro.html" title="struct syn::ForeignItemMacro">ForeignItemMacro</a></h3></section><section id="impl-Parse-for-ForeignItemStatic" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1909-1922">source</a><a href="#impl-Parse-for-ForeignItemStatic" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemStatic.html" title="struct syn::ForeignItemStatic">ForeignItemStatic</a></h3></section><section id="impl-Parse-for-ForeignItemType" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1925-1940">source</a><a href="#impl-Parse-for-ForeignItemType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ForeignItemType.html" title="struct syn::ForeignItemType">ForeignItemType</a></h3></section><section id="impl-Parse-for-Generics" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#558-618">source</a><a href="#impl-Parse-for-Generics" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Generics.html" title="struct syn::Generics">Generics</a></h3></section><section id="impl-Parse-for-Ident" class="impl"><a class="src rightside" href="../../src/syn/ident.rs.html#76-93">source</a><a href="#impl-Parse-for-Ident" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Ident.html" title="struct syn::Ident">Ident</a></h3></section><section id="impl-Parse-for-ImplItemConst" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2709-2743">source</a><a href="#impl-Parse-for-ImplItemConst" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemConst.html" title="struct syn::ImplItemConst">ImplItemConst</a></h3></section><section id="impl-Parse-for-ImplItemFn" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2746-2751">source</a><a href="#impl-Parse-for-ImplItemFn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemFn.html" title="struct syn::ImplItemFn">ImplItemFn</a></h3></section><section id="impl-Parse-for-ImplItemMacro" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2849-2864">source</a><a href="#impl-Parse-for-ImplItemMacro" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemMacro.html" title="struct syn::ImplItemMacro">ImplItemMacro</a></h3></section><section id="impl-Parse-for-ImplItemType" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2787-2811">source</a><a href="#impl-Parse-for-ImplItemType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ImplItemType.html" title="struct syn::ImplItemType">ImplItemType</a></h3></section><section id="impl-Parse-for-Index" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2919-2934">source</a><a href="#impl-Parse-for-Index" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Index.html" title="struct syn::Index">Index</a></h3></section><section id="impl-Parse-for-ItemConst" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1452-1484">source</a><a href="#impl-Parse-for-ItemConst" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemConst.html" title="struct syn::ItemConst">ItemConst</a></h3></section><section id="impl-Parse-for-ItemEnum" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2070-2091">source</a><a href="#impl-Parse-for-ItemEnum" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemEnum.html" title="struct syn::ItemEnum">ItemEnum</a></h3></section><section id="impl-Parse-for-ItemExternCrate" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1285-1315">source</a><a href="#impl-Parse-for-ItemExternCrate" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemExternCrate.html" title="struct syn::ItemExternCrate">ItemExternCrate</a></h3></section><section id="impl-Parse-for-ItemFn" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1530-1537">source</a><a href="#impl-Parse-for-ItemFn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemFn.html" title="struct syn::ItemFn">ItemFn</a></h3></section><section id="impl-Parse-for-ItemForeignMod" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1789-1811">source</a><a href="#impl-Parse-for-ItemForeignMod" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemForeignMod.html" title="struct syn::ItemForeignMod">ItemForeignMod</a></h3></section><section id="impl-Parse-for-ItemImpl" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2502-2507">source</a><a href="#impl-Parse-for-ItemImpl" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemImpl.html" title="struct syn::ItemImpl">ItemImpl</a></h3></section><section id="impl-Parse-for-ItemMacro" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1231-1259">source</a><a href="#impl-Parse-for-ItemMacro" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemMacro.html" title="struct syn::ItemMacro">ItemMacro</a></h3></section><section id="impl-Parse-for-ItemMod" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1740-1786">source</a><a href="#impl-Parse-for-ItemMod" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemMod.html" title="struct syn::ItemMod">ItemMod</a></h3></section><section id="impl-Parse-for-ItemStatic" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1434-1449">source</a><a href="#impl-Parse-for-ItemStatic" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemStatic.html" title="struct syn::ItemStatic">ItemStatic</a></h3></section><section id="impl-Parse-for-ItemStruct" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2046-2067">source</a><a href="#impl-Parse-for-ItemStruct" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemStruct.html" title="struct syn::ItemStruct">ItemStruct</a></h3></section><section id="impl-Parse-for-ItemTrait" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2145-2165">source</a><a href="#impl-Parse-for-ItemTrait" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemTrait.html" title="struct syn::ItemTrait">ItemTrait</a></h3></section><section id="impl-Parse-for-ItemTraitAlias" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2220-2225">source</a><a href="#impl-Parse-for-ItemTraitAlias" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemTraitAlias.html" title="struct syn::ItemTraitAlias">ItemTraitAlias</a></h3></section><section id="impl-Parse-for-ItemType" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1992-2009">source</a><a href="#impl-Parse-for-ItemType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemType.html" title="struct syn::ItemType">ItemType</a></h3></section><section id="impl-Parse-for-ItemUnion" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2094-2114">source</a><a href="#impl-Parse-for-ItemUnion" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemUnion.html" title="struct syn::ItemUnion">ItemUnion</a></h3></section><section id="impl-Parse-for-ItemUse" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1318-1323">source</a><a href="#impl-Parse-for-ItemUse" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ItemUse.html" title="struct syn::ItemUse">ItemUse</a></h3></section><section id="impl-Parse-for-Label" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2586-2593">source</a><a href="#impl-Parse-for-Label" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Label.html" title="struct syn::Label">Label</a></h3></section><section id="impl-Parse-for-Lifetime" class="impl"><a class="src rightside" href="../../src/syn/lifetime.rs.html#130-138">source</a><a href="#impl-Parse-for-Lifetime" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Lifetime.html" title="struct syn::Lifetime">Lifetime</a></h3></section><section id="impl-Parse-for-LifetimeParam" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#648-683">source</a><a href="#impl-Parse-for-LifetimeParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LifetimeParam.html" title="struct syn::LifetimeParam">LifetimeParam</a></h3></section><section id="impl-Parse-for-LitBool" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#937-945">source</a><a href="#impl-Parse-for-LitBool" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitBool.html" title="struct syn::LitBool">LitBool</a></h3></section><section id="impl-Parse-for-LitByte" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#893-901">source</a><a href="#impl-Parse-for-LitByte" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitByte.html" title="struct syn::LitByte">LitByte</a></h3></section><section id="impl-Parse-for-LitByteStr" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#882-890">source</a><a href="#impl-Parse-for-LitByteStr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitByteStr.html" title="struct syn::LitByteStr">LitByteStr</a></h3></section><section id="impl-Parse-for-LitChar" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#904-912">source</a><a href="#impl-Parse-for-LitChar" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitChar.html" title="struct syn::LitChar">LitChar</a></h3></section><section id="impl-Parse-for-LitFloat" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#926-934">source</a><a href="#impl-Parse-for-LitFloat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitFloat.html" title="struct syn::LitFloat">LitFloat</a></h3></section><section id="impl-Parse-for-LitInt" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#915-923">source</a><a href="#impl-Parse-for-LitInt" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitInt.html" title="struct syn::LitInt">LitInt</a></h3></section><section id="impl-Parse-for-LitStr" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#871-879">source</a><a href="#impl-Parse-for-LitStr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.LitStr.html" title="struct syn::LitStr">LitStr</a></h3></section><section id="impl-Parse-for-Macro" class="impl"><a class="src rightside" href="../../src/syn/mac.rs.html#172-186">source</a><a href="#impl-Parse-for-Macro" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::<a class="struct" href="../struct.Macro.html" title="struct syn::Macro">Macro</a></h3></section><section id="impl-Parse-for-MetaList" class="impl"><a class="src rightside" href="../../src/syn/attr.rs.html#676-681">source</a><a href="#impl-Parse-for-MetaList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.MetaList.html" title="struct syn::MetaList">MetaList</a></h3></section><section id="impl-Parse-for-MetaNameValue" class="impl"><a class="src rightside" href="../../src/syn/attr.rs.html#684-689">source</a><a href="#impl-Parse-for-MetaNameValue" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.MetaNameValue.html" title="struct syn::MetaNameValue">MetaNameValue</a></h3></section><section id="impl-Parse-for-ParenthesizedGenericArguments" class="impl"><a class="src rightside" href="../../src/syn/path.rs.html#489-498">source</a><a href="#impl-Parse-for-ParenthesizedGenericArguments" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ParenthesizedGenericArguments.html" title="struct syn::ParenthesizedGenericArguments">ParenthesizedGenericArguments</a></h3></section><section id="impl-Parse-for-PatType" class="impl"><a class="src rightside" href="../../src/syn/pat.rs.html#386-395">source</a><a href="#impl-Parse-for-PatType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.PatType.html" title="struct syn::PatType">PatType</a></h3></section><section id="impl-Parse-for-Path" class="impl"><a class="src rightside" href="../../src/syn/path.rs.html#309-313">source</a><a href="#impl-Parse-for-Path" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Path.html" title="struct syn::Path">Path</a></h3></section><section id="impl-Parse-for-PathSegment" class="impl"><a class="src rightside" href="../../src/syn/path.rs.html#501-505">source</a><a href="#impl-Parse-for-PathSegment" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.PathSegment.html" title="struct syn::PathSegment">PathSegment</a></h3></section><section id="impl-Parse-for-Receiver" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1626-1668">source</a><a href="#impl-Parse-for-Receiver" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Receiver.html" title="struct syn::Receiver">Receiver</a></h3></section><section id="impl-Parse-for-Signature" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#1496-1527">source</a><a href="#impl-Parse-for-Signature" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Signature.html" title="struct syn::Signature">Signature</a></h3></section><section id="impl-Parse-for-TraitBound" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#827-849">source</a><a href="#impl-Parse-for-TraitBound" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitBound.html" title="struct syn::TraitBound">TraitBound</a></h3></section><section id="impl-Parse-for-TraitItemConst" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2361-2395">source</a><a href="#impl-Parse-for-TraitItemConst" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemConst.html" title="struct syn::TraitItemConst">TraitItemConst</a></h3></section><section id="impl-Parse-for-TraitItemFn" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2398-2424">source</a><a href="#impl-Parse-for-TraitItemFn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemFn.html" title="struct syn::TraitItemFn">TraitItemFn</a></h3></section><section id="impl-Parse-for-TraitItemMacro" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2484-2499">source</a><a href="#impl-Parse-for-TraitItemMacro" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemMacro.html" title="struct syn::TraitItemMacro">TraitItemMacro</a></h3></section><section id="impl-Parse-for-TraitItemType" class="impl"><a class="src rightside" href="../../src/syn/item.rs.html#2427-2448">source</a><a href="#impl-Parse-for-TraitItemType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TraitItemType.html" title="struct syn::TraitItemType">TraitItemType</a></h3></section><section id="impl-Parse-for-TypeArray" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#604-614">source</a><a href="#impl-Parse-for-TypeArray" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeArray.html" title="struct syn::TypeArray">TypeArray</a></h3></section><section id="impl-Parse-for-TypeBareFn" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#653-697">source</a><a href="#impl-Parse-for-TypeBareFn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeBareFn.html" title="struct syn::TypeBareFn">TypeBareFn</a></h3></section><section id="impl-Parse-for-TypeGroup" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#893-901">source</a><a href="#impl-Parse-for-TypeGroup" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeGroup.html" title="struct syn::TypeGroup">TypeGroup</a></h3></section><section id="impl-Parse-for-TypeImplTrait" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#850-855">source</a><a href="#impl-Parse-for-TypeImplTrait" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeImplTrait.html" title="struct syn::TypeImplTrait">TypeImplTrait</a></h3></section><section id="impl-Parse-for-TypeInfer" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#709-715">source</a><a href="#impl-Parse-for-TypeInfer" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeInfer.html" title="struct syn::TypeInfer">TypeInfer</a></h3></section><section id="impl-Parse-for-TypeMacro" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#751-757">source</a><a href="#impl-Parse-for-TypeMacro" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeMacro.html" title="struct syn::TypeMacro">TypeMacro</a></h3></section><section id="impl-Parse-for-TypeNever" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#700-706">source</a><a href="#impl-Parse-for-TypeNever" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeNever.html" title="struct syn::TypeNever">TypeNever</a></h3></section><section id="impl-Parse-for-TypeParam" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#726-764">source</a><a href="#impl-Parse-for-TypeParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeParam.html" title="struct syn::TypeParam">TypeParam</a></h3></section><section id="impl-Parse-for-TypeParen" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#904-909">source</a><a href="#impl-Parse-for-TypeParen" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeParen.html" title="struct syn::TypeParen">TypeParen</a></h3></section><section id="impl-Parse-for-TypePath" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#760-766">source</a><a href="#impl-Parse-for-TypePath" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypePath.html" title="struct syn::TypePath">TypePath</a></h3></section><section id="impl-Parse-for-TypePtr" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#617-637">source</a><a href="#impl-Parse-for-TypePtr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypePtr.html" title="struct syn::TypePtr">TypePtr</a></h3></section><section id="impl-Parse-for-TypeReference" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#640-650">source</a><a href="#impl-Parse-for-TypeReference" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeReference.html" title="struct syn::TypeReference">TypeReference</a></h3></section><section id="impl-Parse-for-TypeSlice" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#593-601">source</a><a href="#impl-Parse-for-TypeSlice" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeSlice.html" title="struct syn::TypeSlice">TypeSlice</a></h3></section><section id="impl-Parse-for-TypeTraitObject" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#796-801">source</a><a href="#impl-Parse-for-TypeTraitObject" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeTraitObject.html" title="struct syn::TypeTraitObject">TypeTraitObject</a></h3></section><section id="impl-Parse-for-TypeTuple" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#718-748">source</a><a href="#impl-Parse-for-TypeTuple" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.TypeTuple.html" title="struct syn::TypeTuple">TypeTuple</a></h3></section><section id="impl-Parse-for-Variant" class="impl"><a class="src rightside" href="../../src/syn/data.rs.html#178-217">source</a><a href="#impl-Parse-for-Variant" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.Variant.html" title="struct syn::Variant">Variant</a></h3></section><section id="impl-Parse-for-WhereClause" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#887-915">source</a><a href="#impl-Parse-for-WhereClause" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a></h3></section><section id="impl-Parse-for-Abstract" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Abstract" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Abstract.html" title="struct syn::token::Abstract">Abstract</a></h3></section><section id="impl-Parse-for-And" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-And" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.And.html" title="struct syn::token::And">And</a></h3></section><section id="impl-Parse-for-AndAnd" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-AndAnd" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.AndAnd.html" title="struct syn::token::AndAnd">AndAnd</a></h3></section><section id="impl-Parse-for-AndEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-AndEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.AndEq.html" title="struct syn::token::AndEq">AndEq</a></h3></section><section id="impl-Parse-for-As" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-As" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.As.html" title="struct syn::token::As">As</a></h3></section><section id="impl-Parse-for-Async" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Async" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Async.html" title="struct syn::token::Async">Async</a></h3></section><section id="impl-Parse-for-At" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-At" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.At.html" title="struct syn::token::At">At</a></h3></section><section id="impl-Parse-for-Auto" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Auto" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Auto.html" title="struct syn::token::Auto">Auto</a></h3></section><section id="impl-Parse-for-Await" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Await" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Await.html" title="struct syn::token::Await">Await</a></h3></section><section id="impl-Parse-for-Become" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Become" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Become.html" title="struct syn::token::Become">Become</a></h3></section><section id="impl-Parse-for-Box" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Box" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Box.html" title="struct syn::token::Box">Box</a></h3></section><section id="impl-Parse-for-Break" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Break" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Break.html" title="struct syn::token::Break">Break</a></h3></section><section id="impl-Parse-for-Caret" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Caret" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Caret.html" title="struct syn::token::Caret">Caret</a></h3></section><section id="impl-Parse-for-CaretEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-CaretEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.CaretEq.html" title="struct syn::token::CaretEq">CaretEq</a></h3></section><section id="impl-Parse-for-Colon" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Colon" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Colon.html" title="struct syn::token::Colon">Colon</a></h3></section><section id="impl-Parse-for-Comma" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Comma" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Comma.html" title="struct syn::token::Comma">Comma</a></h3></section><section id="impl-Parse-for-Const" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Const" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Const.html" title="struct syn::token::Const">Const</a></h3></section><section id="impl-Parse-for-Continue" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Continue" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Continue.html" title="struct syn::token::Continue">Continue</a></h3></section><section id="impl-Parse-for-Crate" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Crate" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Crate.html" title="struct syn::token::Crate">Crate</a></h3></section><section id="impl-Parse-for-Default" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Default" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Default.html" title="struct syn::token::Default">Default</a></h3></section><section id="impl-Parse-for-Do" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Do" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Do.html" title="struct syn::token::Do">Do</a></h3></section><section id="impl-Parse-for-Dollar" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Dollar" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dollar.html" title="struct syn::token::Dollar">Dollar</a></h3></section><section id="impl-Parse-for-Dot" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Dot" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dot.html" title="struct syn::token::Dot">Dot</a></h3></section><section id="impl-Parse-for-DotDot" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-DotDot" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DotDot.html" title="struct syn::token::DotDot">DotDot</a></h3></section><section id="impl-Parse-for-DotDotDot" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-DotDotDot" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DotDotDot.html" title="struct syn::token::DotDotDot">DotDotDot</a></h3></section><section id="impl-Parse-for-DotDotEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-DotDotEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.DotDotEq.html" title="struct syn::token::DotDotEq">DotDotEq</a></h3></section><section id="impl-Parse-for-Dyn" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Dyn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Dyn.html" title="struct syn::token::Dyn">Dyn</a></h3></section><section id="impl-Parse-for-Else" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Else" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Else.html" title="struct syn::token::Else">Else</a></h3></section><section id="impl-Parse-for-Enum" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Enum" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Enum.html" title="struct syn::token::Enum">Enum</a></h3></section><section id="impl-Parse-for-Eq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Eq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Eq.html" title="struct syn::token::Eq">Eq</a></h3></section><section id="impl-Parse-for-EqEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-EqEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.EqEq.html" title="struct syn::token::EqEq">EqEq</a></h3></section><section id="impl-Parse-for-Extern" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Extern" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Extern.html" title="struct syn::token::Extern">Extern</a></h3></section><section id="impl-Parse-for-FatArrow" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-FatArrow" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.FatArrow.html" title="struct syn::token::FatArrow">FatArrow</a></h3></section><section id="impl-Parse-for-Final" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Final" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Final.html" title="struct syn::token::Final">Final</a></h3></section><section id="impl-Parse-for-Fn" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Fn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Fn.html" title="struct syn::token::Fn">Fn</a></h3></section><section id="impl-Parse-for-For" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-For" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.For.html" title="struct syn::token::For">For</a></h3></section><section id="impl-Parse-for-Ge" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Ge" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ge.html" title="struct syn::token::Ge">Ge</a></h3></section><section id="impl-Parse-for-Gt" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Gt" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Gt.html" title="struct syn::token::Gt">Gt</a></h3></section><section id="impl-Parse-for-If" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-If" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.If.html" title="struct syn::token::If">If</a></h3></section><section id="impl-Parse-for-Impl" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Impl" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Impl.html" title="struct syn::token::Impl">Impl</a></h3></section><section id="impl-Parse-for-In" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-In" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.In.html" title="struct syn::token::In">In</a></h3></section><section id="impl-Parse-for-LArrow" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-LArrow" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.LArrow.html" title="struct syn::token::LArrow">LArrow</a></h3></section><section id="impl-Parse-for-Le" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Le" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Le.html" title="struct syn::token::Le">Le</a></h3></section><section id="impl-Parse-for-Let" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Let" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Let.html" title="struct syn::token::Let">Let</a></h3></section><section id="impl-Parse-for-Loop" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Loop" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Loop.html" title="struct syn::token::Loop">Loop</a></h3></section><section id="impl-Parse-for-Lt" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Lt" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Lt.html" title="struct syn::token::Lt">Lt</a></h3></section><section id="impl-Parse-for-Macro-1" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Macro-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Macro.html" title="struct syn::token::Macro">Macro</a></h3></section><section id="impl-Parse-for-Match" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Match" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Match.html" title="struct syn::token::Match">Match</a></h3></section><section id="impl-Parse-for-Minus" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Minus" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Minus.html" title="struct syn::token::Minus">Minus</a></h3></section><section id="impl-Parse-for-MinusEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-MinusEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.MinusEq.html" title="struct syn::token::MinusEq">MinusEq</a></h3></section><section id="impl-Parse-for-Mod" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Mod" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Mod.html" title="struct syn::token::Mod">Mod</a></h3></section><section id="impl-Parse-for-Move" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Move" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Move.html" title="struct syn::token::Move">Move</a></h3></section><section id="impl-Parse-for-Mut" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Mut" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Mut.html" title="struct syn::token::Mut">Mut</a></h3></section><section id="impl-Parse-for-Ne" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Ne" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ne.html" title="struct syn::token::Ne">Ne</a></h3></section><section id="impl-Parse-for-Not" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Not" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Not.html" title="struct syn::token::Not">Not</a></h3></section><section id="impl-Parse-for-Or" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Or" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Or.html" title="struct syn::token::Or">Or</a></h3></section><section id="impl-Parse-for-OrEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-OrEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.OrEq.html" title="struct syn::token::OrEq">OrEq</a></h3></section><section id="impl-Parse-for-OrOr" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-OrOr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.OrOr.html" title="struct syn::token::OrOr">OrOr</a></h3></section><section id="impl-Parse-for-Override" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Override" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Override.html" title="struct syn::token::Override">Override</a></h3></section><section id="impl-Parse-for-PathSep" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-PathSep" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.PathSep.html" title="struct syn::token::PathSep">PathSep</a></h3></section><section id="impl-Parse-for-Percent" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Percent" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Percent.html" title="struct syn::token::Percent">Percent</a></h3></section><section id="impl-Parse-for-PercentEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-PercentEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.PercentEq.html" title="struct syn::token::PercentEq">PercentEq</a></h3></section><section id="impl-Parse-for-Plus" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Plus" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Plus.html" title="struct syn::token::Plus">Plus</a></h3></section><section id="impl-Parse-for-PlusEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-PlusEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.PlusEq.html" title="struct syn::token::PlusEq">PlusEq</a></h3></section><section id="impl-Parse-for-Pound" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Pound" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Pound.html" title="struct syn::token::Pound">Pound</a></h3></section><section id="impl-Parse-for-Priv" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Priv" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Priv.html" title="struct syn::token::Priv">Priv</a></h3></section><section id="impl-Parse-for-Pub" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Pub" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Pub.html" title="struct syn::token::Pub">Pub</a></h3></section><section id="impl-Parse-for-Question" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Question" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Question.html" title="struct syn::token::Question">Question</a></h3></section><section id="impl-Parse-for-RArrow" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-RArrow" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.RArrow.html" title="struct syn::token::RArrow">RArrow</a></h3></section><section id="impl-Parse-for-Ref" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Ref" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Ref.html" title="struct syn::token::Ref">Ref</a></h3></section><section id="impl-Parse-for-Return" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Return" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Return.html" title="struct syn::token::Return">Return</a></h3></section><section id="impl-Parse-for-SelfType" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-SelfType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SelfType.html" title="struct syn::token::SelfType">SelfType</a></h3></section><section id="impl-Parse-for-SelfValue" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-SelfValue" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SelfValue.html" title="struct syn::token::SelfValue">SelfValue</a></h3></section><section id="impl-Parse-for-Semi" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Semi" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Semi.html" title="struct syn::token::Semi">Semi</a></h3></section><section id="impl-Parse-for-Shl" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Shl" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Shl.html" title="struct syn::token::Shl">Shl</a></h3></section><section id="impl-Parse-for-ShlEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-ShlEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.ShlEq.html" title="struct syn::token::ShlEq">ShlEq</a></h3></section><section id="impl-Parse-for-Shr" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Shr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Shr.html" title="struct syn::token::Shr">Shr</a></h3></section><section id="impl-Parse-for-ShrEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-ShrEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.ShrEq.html" title="struct syn::token::ShrEq">ShrEq</a></h3></section><section id="impl-Parse-for-Slash" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Slash" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Slash.html" title="struct syn::token::Slash">Slash</a></h3></section><section id="impl-Parse-for-SlashEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-SlashEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.SlashEq.html" title="struct syn::token::SlashEq">SlashEq</a></h3></section><section id="impl-Parse-for-Star" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Star" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Star.html" title="struct syn::token::Star">Star</a></h3></section><section id="impl-Parse-for-StarEq" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-StarEq" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.StarEq.html" title="struct syn::token::StarEq">StarEq</a></h3></section><section id="impl-Parse-for-Static" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Static" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Static.html" title="struct syn::token::Static">Static</a></h3></section><section id="impl-Parse-for-Struct" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Struct" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Struct.html" title="struct syn::token::Struct">Struct</a></h3></section><section id="impl-Parse-for-Super" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Super" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Super.html" title="struct syn::token::Super">Super</a></h3></section><section id="impl-Parse-for-Tilde" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#791-838">source</a><a href="#impl-Parse-for-Tilde" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Tilde.html" title="struct syn::token::Tilde">Tilde</a></h3></section><section id="impl-Parse-for-Trait" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Trait" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Trait.html" title="struct syn::token::Trait">Trait</a></h3></section><section id="impl-Parse-for-Try" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Try" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Try.html" title="struct syn::token::Try">Try</a></h3></section><section id="impl-Parse-for-Type-1" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Type-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for syn::token::<a class="struct" href="../token/struct.Type.html" title="struct syn::token::Type">Type</a></h3></section><section id="impl-Parse-for-Typeof" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Typeof" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Typeof.html" title="struct syn::token::Typeof">Typeof</a></h3></section><section id="impl-Parse-for-Underscore" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#580-596">source</a><a href="#impl-Parse-for-Underscore" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Underscore.html" title="struct syn::token::Underscore">Underscore</a></h3></section><section id="impl-Parse-for-Union" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Union" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Union.html" title="struct syn::token::Union">Union</a></h3></section><section id="impl-Parse-for-Unsafe" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Unsafe" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Unsafe.html" title="struct syn::token::Unsafe">Unsafe</a></h3></section><section id="impl-Parse-for-Unsized" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Unsized" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Unsized.html" title="struct syn::token::Unsized">Unsized</a></h3></section><section id="impl-Parse-for-Use" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Use" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Use.html" title="struct syn::token::Use">Use</a></h3></section><section id="impl-Parse-for-Virtual" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Virtual" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Virtual.html" title="struct syn::token::Virtual">Virtual</a></h3></section><section id="impl-Parse-for-Where" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Where" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Where.html" title="struct syn::token::Where">Where</a></h3></section><section id="impl-Parse-for-While" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-While" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.While.html" title="struct syn::token::While">While</a></h3></section><section id="impl-Parse-for-Yield" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#736-789">source</a><a href="#impl-Parse-for-Yield" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../token/struct.Yield.html" title="struct syn::token::Yield">Yield</a></h3></section><section id="impl-Parse-for-Nothing" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1351-1355">source</a><a href="#impl-Parse-for-Nothing" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="struct.Nothing.html" title="struct syn::parse::Nothing">Nothing</a></h3></section></div><script src="../../trait.impl/syn/parse/trait.Parse.js" data-ignore-extern-crates="proc_macro2,alloc,core" async></script></section></div></main></body></html> |