|
|
<!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.106</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%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#214-216">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#215">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#1191-1198">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#1192-1197">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#1060-1068">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#1061-1067">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#688-696">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#689-695">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%3CWhereClause%3E" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#965-973">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-3" class="method trait-impl"><a class="src rightside" href="../../src/syn/generics.rs.html#966-972">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-Group" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1201-1212">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-4" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1202-1211">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-Literal" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1225-1232">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-5" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1226-1231">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-Punct" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1215-1222">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-6" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1216-1221">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-TokenStream" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1184-1188">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-7" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1185-1187">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-Option%3CT%3E" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1173-1181">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-8" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1174-1180">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-Box%3CT%3E" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1166-1170">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-9" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1167-1169">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><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#1228-1236">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-GenericArgument" class="impl"><a class="src rightside" href="../../src/syn/path.rs.html#316-407">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#601-625">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-Lit" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#866-895">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#2973-2983">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#687-692">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-ReturnType" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#809-814">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-TraitBoundModifier" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#892-900">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-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#743-749">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-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#976-1042">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#1050-1057">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#488-493">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-BareFnArg" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#979-984">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-BoundLifetimes" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#666-685">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#903-924">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-ExprLit" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2147-2154">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-ExprMacro" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#1994-2001">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-ExprPath" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2958-2970">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-ExprStruct" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2779-2785">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-FieldValue" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#2750-2776">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#300-308">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#311-319">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-Generics" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#538-598">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-Index" class="impl"><a class="src rightside" href="../../src/syn/expr.rs.html#3031-3046">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-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#628-663">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#1014-1022">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#970-978">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#948-956">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-LitCStr" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#959-967">source</a><a href="#impl-Parse-for-LitCStr" class="anchor">§</a><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.LitCStr.html" title="struct syn::LitCStr">LitCStr</a></h3></section><section id="impl-Parse-for-LitChar" class="impl"><a class="src rightside" href="../../src/syn/lit.rs.html#981-989">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#1003-1011">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#992-1000">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#937-945">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#180-194">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#695-700">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#703-708">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#496-505">source</a><a href="#impl-Parse-for-ParenthesizedGenericArguments" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../struct.ParenthesizedGenericArguments.html" title="struct syn::ParenthesizedGenericArguments">ParenthesizedGenericArguments</a></h3></section><section id="impl-Parse-for-Path" class="impl"><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#508-512">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-TraitBound" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#824-829">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-TypeArray" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#625-635">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#674-718">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#947-955">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#881-886">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#730-736">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#772-778">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#721-727">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#699-740">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#958-963">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#781-787">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#638-658">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#661-671">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#614-622">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#817-822">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#739-769">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#258-297">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#927-962">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#692-746">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#748-795">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#748-795">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#748-795">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#692-746">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#692-746">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#748-795">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#692-746">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#692-746">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#692-746">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#692-746">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#692-746">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#748-795">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#748-795">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#748-795">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#748-795">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#692-746">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#692-746">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#692-746">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#692-746">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#692-746">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#692-746">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#692-746">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#692-746">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#748-795">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#748-795">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#692-746">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#748-795">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#692-746">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#692-746">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#692-746">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#748-795">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#748-795">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#692-746">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#692-746">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#692-746">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#748-795">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#748-795">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#692-746">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#692-746">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#748-795">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#692-746">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#692-746">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#748-795">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#748-795">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#692-746">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#692-746">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#692-746">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#692-746">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#692-746">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#692-746">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#748-795">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#748-795">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-Raw" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#692-746">source</a><a href="#impl-Parse-for-Raw" class="anchor">§</a><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.Raw.html" title="struct syn::token::Raw">Raw</a></h3></section><section id="impl-Parse-for-Ref" class="impl"><a class="src rightside" href="../../src/syn/token.rs.html#692-746">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#692-746">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#692-746">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#692-746">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#748-795">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#692-746">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#692-746">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#692-746">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#748-795">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#692-746">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#692-746">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#692-746">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#692-746">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#535-551">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#692-746">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#692-746">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#692-746">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#692-746">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#692-746">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#692-746">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#692-746">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#692-746">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#1369-1373">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,core,alloc" async></script></section></div></main></body></html> |