wasmer/rustdoc/syn/parse/trait.Parse.html
2019-09-06 15:57:44 -07:00

10 lines
213 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `Parse` trait in crate `syn`."><meta name="keywords" content="rust, rustlang, rust-lang, Parse"><title>syn::parse::Parse - Rust</title><link rel="stylesheet" type="text/css" href="../../normalize.css"><link rel="stylesheet" type="text/css" href="../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../dark.css"><link rel="stylesheet" type="text/css" href="../../light.css" id="themeStyle"><script src="../../storage.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="shortcut icon" href="../../favicon.ico"><style type="text/css">#crate-search{background-image:url("../../down-arrow.svg");}</style></head><body class="rustdoc trait"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">&#9776;</div><a href='../../syn/index.html'><div class='logo-container'><img src='../../rust-logo.png' alt='logo'></div></a><p class='location'>Trait Parse</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.parse">parse</a></div><a class="sidebar-title" href="#foreign-impls">Implementations on Foreign Types</a><div class="sidebar-links"><a href="#impl-Parse-for-Box%3CT%3E">Box&lt;T&gt;</a><a href="#impl-Parse-for-Group">Group</a><a href="#impl-Parse-for-Literal">Literal</a><a href="#impl-Parse-for-Option%3CAbi%3E">Option&lt;Abi&gt;</a><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E">Option&lt;BoundLifetimes&gt;</a><a href="#impl-Parse-for-Option%3CLabel%3E">Option&lt;Label&gt;</a><a href="#impl-Parse-for-Option%3CT%3E">Option&lt;T&gt;</a><a href="#impl-Parse-for-Option%3CWhereClause%3E">Option&lt;WhereClause&gt;</a><a href="#impl-Parse-for-Punct">Punct</a><a href="#impl-Parse-for-TokenStream">TokenStream</a><a href="#impl-Parse-for-TokenTree">TokenTree</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='../index.html'>syn</a>::<wbr><a href='index.html'>parse</a></p><script>window.sidebarCurrent = {name: 'Parse', ty: 'trait', relpath: ''};</script><script defer src="sidebar-items.js"></script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../../theme.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press S to search, ? for more options…" type="search"></div><a id="settings-menu" href="../../settings.html"><img src="../../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span id='render-detail'><a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class='inner'>&#x2212;</span>]</a></span><a class='srclink' href='../../src/syn/parse.rs.html#220-222' title='goto source code'>[src]</a></span><span class='in-band'>Trait <a href='../index.html'>syn</a>::<wbr><a href='index.html'>parse</a>::<wbr><a class="trait" href=''>Parse</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust trait'>pub trait Parse: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> {
fn <a href='#tymethod.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;;
}</pre></div><div class='docblock'><p>Parsing interface implemented by all types that can be parsed in a default
way from a token stream.</p>
</div>
<h2 id='required-methods' class='small-section-header'>Required methods<a href='#required-methods' class='anchor'></a></h2><div class='methods'><h3 id='tymethod.parse' class='method'><code id='parse.v'>fn <a href='#tymethod.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code></h3></div><span class='loading-content'>Loading content...</span>
<h2 id='foreign-impls' class='small-section-header'>Implementations on Foreign Types<a href='#foreign-impls' class='anchor'></a></h2><h3 id='impl-Parse-for-Option%3CLabel%3E' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../../syn/struct.Label.html" title="struct syn::Label">Label</a>&gt;</code><a href='#impl-Parse-for-Option%3CLabel%3E' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2338-2346' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse' class="method hidden"><code id='parse.v-1'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2339-2345' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Option%3CBoundLifetimes%3E' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../../syn/struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a>&gt;</code><a href='#impl-Parse-for-Option%3CBoundLifetimes%3E' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#656-664' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-1' class="method hidden"><code id='parse.v-2'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#657-663' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Option%3CWhereClause%3E' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../../syn/struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a>&gt;</code><a href='#impl-Parse-for-Option%3CWhereClause%3E' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#824-832' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-2' class="method hidden"><code id='parse.v-3'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#825-831' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Option%3CAbi%3E' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../../syn/struct.Abi.html" title="struct syn::Abi">Abi</a>&gt;</code><a href='#impl-Parse-for-Option%3CAbi%3E' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#933-941' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-3' class="method hidden"><code id='parse.v-4'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#934-940' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Box%3CT%3E' class='impl'><code class='in-band'>impl&lt;T:&nbsp;<a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a>&gt; <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a>&lt;T&gt;</code><a href='#impl-Parse-for-Box%3CT%3E' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#981-985' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-4' class="method hidden"><code id='parse.v-5'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/parse.rs.html#982-984' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Option%3CT%3E' class='impl'><code class='in-band'>impl&lt;T:&nbsp;<a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> + <a class="trait" href="../../syn/token/trait.Token.html" title="trait syn::token::Token">Token</a>&gt; <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;T&gt;</code><a href='#impl-Parse-for-Option%3CT%3E' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#987-995' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-5' class="method hidden"><code id='parse.v-6'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/parse.rs.html#988-994' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-TokenStream' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.TokenStream.html" title="struct proc_macro2::TokenStream">TokenStream</a></code><a href='#impl-Parse-for-TokenStream' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#997-1001' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-6' class="method hidden"><code id='parse.v-7'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/parse.rs.html#998-1000' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-TokenTree' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../../proc_macro2/enum.TokenTree.html" title="enum proc_macro2::TokenTree">TokenTree</a></code><a href='#impl-Parse-for-TokenTree' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#1003-1010' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-7' class="method hidden"><code id='parse.v-8'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/parse.rs.html#1004-1009' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Group' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Group.html" title="struct proc_macro2::Group">Group</a></code><a href='#impl-Parse-for-Group' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#1012-1025' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-8' class="method hidden"><code id='parse.v-9'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/parse.rs.html#1013-1024' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Punct' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Punct.html" title="struct proc_macro2::Punct">Punct</a></code><a href='#impl-Parse-for-Punct' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#1027-1034' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-9' class="method hidden"><code id='parse.v-10'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/parse.rs.html#1028-1033' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Literal' class='impl'><code class='in-band'>impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="struct" href="../../proc_macro2/struct.Literal.html" title="struct proc_macro2::Literal">Literal</a></code><a href='#impl-Parse-for-Literal' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#1036-1043' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-10' class="method hidden"><code id='parse.v-11'>fn <a href='#method.parse' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/parse.rs.html#1037-1042' title='goto source code'>[src]</a></h4></div><span class='loading-content'>Loading content...</span>
<h2 id='implementors' class='small-section-header'>Implementors<a href='#implementors' class='anchor'></a></h2><div class='item-list' id='implementors-list'><h3 id='impl-Parse' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.BinOp.html" title="enum syn::BinOp">BinOp</a></code><a href='#impl-Parse' class='anchor'></a><a class='srclink' href='../../src/syn/op.rs.html#131-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-11' class="method hidden"><code id='parse.v-12'>fn <a href='#method.parse-11' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/op.rs.html#138-162' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-1' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.Expr.html" title="enum syn::Expr">Expr</a></code><a href='#impl-Parse-1' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#1243-1247' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-12' class="method hidden"><code id='parse.v-13'>fn <a href='#method.parse-12' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#1244-1246' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-2' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.FnArg.html" title="enum syn::FnArg">FnArg</a></code><a href='#impl-Parse-2' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1478-1495' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-13' class="method hidden"><code id='parse.v-14'>fn <a href='#method.parse-13' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1479-1494' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-3' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.ForeignItem.html" title="enum syn::ForeignItem">ForeignItem</a></code><a href='#impl-Parse-3' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1602-1642' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-14' class="method hidden"><code id='parse.v-15'>fn <a href='#method.parse-14' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1603-1641' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-4' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.GenericArgument.html" title="enum syn::GenericArgument">GenericArgument</a></code><a href='#impl-Parse-4' class='anchor'></a><a class='srclink' href='../../src/syn/path.rs.html#218-247' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-15' class="method hidden"><code id='parse.v-16'>fn <a href='#method.parse-15' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/path.rs.html#219-246' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-5' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.GenericParam.html" title="enum syn::GenericParam">GenericParam</a></code><a href='#impl-Parse-5' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#572-596' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-16' class="method hidden"><code id='parse.v-17'>fn <a href='#method.parse-16' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#573-595' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-6' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.ImplItem.html" title="enum syn::ImplItem">ImplItem</a></code><a href='#impl-Parse-6' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2292-2360' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-17' class="method hidden"><code id='parse.v-18'>fn <a href='#method.parse-17' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2293-2359' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-7' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.Item.html" title="enum syn::Item">Item</a></code><a href='#impl-Parse-7' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1085-1213' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-18' class="method hidden"><code id='parse.v-19'>fn <a href='#method.parse-18' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1086-1212' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-8' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.Lit.html" title="enum syn::Lit">Lit</a></code><a href='#impl-Parse-8' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#696-719' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-19' class="method hidden"><code id='parse.v-20'>fn <a href='#method.parse-19' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lit.rs.html#697-718' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-9' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.Member.html" title="enum syn::Member">Member</a></code><a href='#impl-Parse-9' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2562-2572' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-20' class="method hidden"><code id='parse.v-21'>fn <a href='#method.parse-20' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2563-2571' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-10' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.Meta.html" title="enum syn::Meta">Meta</a></code><a href='#impl-Parse-10' class='anchor'></a><a class='srclink' href='../../src/syn/attr.rs.html#549-554' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-21' class="method hidden"><code id='parse.v-22'>fn <a href='#method.parse-21' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/attr.rs.html#550-553' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-11' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.NestedMeta.html" title="enum syn::NestedMeta">NestedMeta</a></code><a href='#impl-Parse-11' class='anchor'></a><a class='srclink' href='../../src/syn/attr.rs.html#570-580' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-22' class="method hidden"><code id='parse.v-23'>fn <a href='#method.parse-22' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/attr.rs.html#571-579' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-12' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.Pat.html" title="enum syn::Pat">Pat</a></code><a href='#impl-Parse-12' class='anchor'></a><a class='srclink' href='../../src/syn/pat.rs.html#392-442' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-23' class="method hidden"><code id='parse.v-24'>fn <a href='#method.parse-23' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/pat.rs.html#393-441' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-13' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.RangeLimits.html" title="enum syn::RangeLimits">RangeLimits</a></code><a href='#impl-Parse-13' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2533-2547' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-24' class="method hidden"><code id='parse.v-25'>fn <a href='#method.parse-24' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2534-2546' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-14' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.ReturnType.html" title="enum syn::ReturnType">ReturnType</a></code><a href='#impl-Parse-14' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#800-804' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-25' class="method hidden"><code id='parse.v-26'>fn <a href='#method.parse-25' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#801-803' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-15' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.Stmt.html" title="enum syn::Stmt">Stmt</a></code><a href='#impl-Parse-15' class='anchor'></a><a class='srclink' href='../../src/syn/stmt.rs.html#142-146' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-26' class="method hidden"><code id='parse.v-27'>fn <a href='#method.parse-26' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/stmt.rs.html#143-145' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-16' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.TraitBoundModifier.html" title="enum syn::TraitBoundModifier">TraitBoundModifier</a></code><a href='#impl-Parse-16' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#761-769' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-27' class="method hidden"><code id='parse.v-28'>fn <a href='#method.parse-27' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#762-768' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-17' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.TraitItem.html" title="enum syn::TraitItem">TraitItem</a></code><a href='#impl-Parse-17' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2035-2089' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-28' class="method hidden"><code id='parse.v-29'>fn <a href='#method.parse-28' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2036-2088' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-18' class='impl'><code class='in-band'>impl Parse for syn::<a class="enum" href="../../syn/enum.Type.html" title="enum syn::Type">Type</a></code><a href='#impl-Parse-18' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#390-394' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-29' class="method hidden"><code id='parse.v-30'>fn <a href='#method.parse-29' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#391-393' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-19' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.TypeParamBound.html" title="enum syn::TypeParamBound">TypeParamBound</a></code><a href='#impl-Parse-19' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#723-739' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-30' class="method hidden"><code id='parse.v-31'>fn <a href='#method.parse-30' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#724-738' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-20' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.UnOp.html" title="enum syn::UnOp">UnOp</a></code><a href='#impl-Parse-20' class='anchor'></a><a class='srclink' href='../../src/syn/op.rs.html#165-178' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-31' class="method hidden"><code id='parse.v-32'>fn <a href='#method.parse-31' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/op.rs.html#166-177' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-21' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.UseTree.html" title="enum syn::UseTree">UseTree</a></code><a href='#impl-Parse-21' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1326-1373' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-32' class="method hidden"><code id='parse.v-33'>fn <a href='#method.parse-32' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;<a class="enum" href="../../syn/enum.UseTree.html" title="enum syn::UseTree">UseTree</a>&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1327-1372' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-22' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.Visibility.html" title="enum syn::Visibility">Visibility</a></code><a href='#impl-Parse-22' class='anchor'></a><a class='srclink' href='../../src/syn/data.rs.html#296-306' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-33' class="method hidden"><code id='parse.v-34'>fn <a href='#method.parse-33' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/data.rs.html#297-305' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-23' class='impl'><code class='in-band'>impl Parse for <a class="enum" href="../../syn/enum.WherePredicate.html" title="enum syn::WherePredicate">WherePredicate</a></code><a href='#impl-Parse-23' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#834-893' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-34' class="method hidden"><code id='parse.v-35'>fn <a href='#method.parse-34' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#835-892' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-24' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/parse/struct.Nothing.html" title="struct syn::parse::Nothing">Nothing</a></code><a href='#impl-Parse-24' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#1189-1193' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-35' class="method hidden"><code id='parse.v-36'>fn <a href='#method.parse-35' class='fnname'>parse</a>(_input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/parse.rs.html#1190-1192' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-25' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Abi.html" title="struct syn::Abi">Abi</a></code><a href='#impl-Parse-25' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#924-931' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-36' class="method hidden"><code id='parse.v-37'>fn <a href='#method.parse-36' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#925-930' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-26' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.AngleBracketedGenericArguments.html" title="struct syn::AngleBracketedGenericArguments">AngleBracketedGenericArguments</a></code><a href='#impl-Parse-26' class='anchor'></a><a class='srclink' href='../../src/syn/path.rs.html#249-273' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-37' class="method hidden"><code id='parse.v-38'>fn <a href='#method.parse-37' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/path.rs.html#250-272' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-27' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Arm.html" title="struct syn::Arm">Arm</a></code><a href='#impl-Parse-27' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2575-2625' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-38' class="method hidden"><code id='parse.v-39'>fn <a href='#method.parse-38' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;<a class="struct" href="../../syn/struct.Arm.html" title="struct syn::Arm">Arm</a>&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2576-2624' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-28' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.BareFnArg.html" title="struct syn::BareFnArg">BareFnArg</a></code><a href='#impl-Parse-28' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#903-922' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-39' class="method hidden"><code id='parse.v-40'>fn <a href='#method.parse-39' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#904-921' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-29' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Binding.html" title="struct syn::Binding">Binding</a></code><a href='#impl-Parse-29' class='anchor'></a><a class='srclink' href='../../src/syn/path.rs.html#322-330' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-40' class="method hidden"><code id='parse.v-41'>fn <a href='#method.parse-40' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/path.rs.html#323-329' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-30' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Block.html" title="struct syn::Block">Block</a></code><a href='#impl-Parse-30' class='anchor'></a><a class='srclink' href='../../src/syn/stmt.rs.html#132-140' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-41' class="method hidden"><code id='parse.v-42'>fn <a href='#method.parse-41' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/stmt.rs.html#133-139' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-31' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a></code><a href='#impl-Parse-31' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#635-654' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-42' class="method hidden"><code id='parse.v-43'>fn <a href='#method.parse-42' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#636-653' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-32' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ConstParam.html" title="struct syn::ConstParam">ConstParam</a></code><a href='#impl-Parse-32' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#771-792' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-43' class="method hidden"><code id='parse.v-44'>fn <a href='#method.parse-43' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#772-791' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-33' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Constraint.html" title="struct syn::Constraint">Constraint</a></code><a href='#impl-Parse-33' class='anchor'></a><a class='srclink' href='../../src/syn/path.rs.html#333-356' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-44' class="method hidden"><code id='parse.v-45'>fn <a href='#method.parse-44' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/path.rs.html#334-355' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-34' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.DeriveInput.html" title="struct syn::DeriveInput">DeriveInput</a></code><a href='#impl-Parse-34' class='anchor'></a><a class='srclink' href='../../src/syn/derive.rs.html#94-160' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-45' class="method hidden"><code id='parse.v-46'>fn <a href='#method.parse-45' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/derive.rs.html#95-159' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-35' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprArray.html" title="struct syn::ExprArray">ExprArray</a></code><a href='#impl-Parse-35' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-46' class="method hidden"><code id='parse.v-47'>fn <a href='#method.parse-46' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-36' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprAssign.html" title="struct syn::ExprAssign">ExprAssign</a></code><a href='#impl-Parse-36' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-47' class="method hidden"><code id='parse.v-48'>fn <a href='#method.parse-47' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-37' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprAssignOp.html" title="struct syn::ExprAssignOp">ExprAssignOp</a></code><a href='#impl-Parse-37' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-48' class="method hidden"><code id='parse.v-49'>fn <a href='#method.parse-48' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-38' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprAsync.html" title="struct syn::ExprAsync">ExprAsync</a></code><a href='#impl-Parse-38' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-49' class="method hidden"><code id='parse.v-50'>fn <a href='#method.parse-49' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-39' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprBinary.html" title="struct syn::ExprBinary">ExprBinary</a></code><a href='#impl-Parse-39' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-50' class="method hidden"><code id='parse.v-51'>fn <a href='#method.parse-50' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-40' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprBlock.html" title="struct syn::ExprBlock">ExprBlock</a></code><a href='#impl-Parse-40' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-51' class="method hidden"><code id='parse.v-52'>fn <a href='#method.parse-51' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-41' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprBox.html" title="struct syn::ExprBox">ExprBox</a></code><a href='#impl-Parse-41' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-52' class="method hidden"><code id='parse.v-53'>fn <a href='#method.parse-52' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-42' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprBreak.html" title="struct syn::ExprBreak">ExprBreak</a></code><a href='#impl-Parse-42' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-53' class="method hidden"><code id='parse.v-54'>fn <a href='#method.parse-53' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-43' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprCall.html" title="struct syn::ExprCall">ExprCall</a></code><a href='#impl-Parse-43' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-54' class="method hidden"><code id='parse.v-55'>fn <a href='#method.parse-54' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-44' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprCast.html" title="struct syn::ExprCast">ExprCast</a></code><a href='#impl-Parse-44' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-55' class="method hidden"><code id='parse.v-56'>fn <a href='#method.parse-55' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-45' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprClosure.html" title="struct syn::ExprClosure">ExprClosure</a></code><a href='#impl-Parse-45' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-56' class="method hidden"><code id='parse.v-57'>fn <a href='#method.parse-56' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-46' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprContinue.html" title="struct syn::ExprContinue">ExprContinue</a></code><a href='#impl-Parse-46' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-57' class="method hidden"><code id='parse.v-58'>fn <a href='#method.parse-57' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-47' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprField.html" title="struct syn::ExprField">ExprField</a></code><a href='#impl-Parse-47' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-58' class="method hidden"><code id='parse.v-59'>fn <a href='#method.parse-58' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-48' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprForLoop.html" title="struct syn::ExprForLoop">ExprForLoop</a></code><a href='#impl-Parse-48' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2034-2075' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-59' class="method hidden"><code id='parse.v-60'>fn <a href='#method.parse-59' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2035-2074' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-49' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprIf.html" title="struct syn::ExprIf">ExprIf</a></code><a href='#impl-Parse-49' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#1995-2011' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-60' class="method hidden"><code id='parse.v-61'>fn <a href='#method.parse-60' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#1996-2010' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-50' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprIndex.html" title="struct syn::ExprIndex">ExprIndex</a></code><a href='#impl-Parse-50' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-61' class="method hidden"><code id='parse.v-62'>fn <a href='#method.parse-61' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-51' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprLet.html" title="struct syn::ExprLet">ExprLet</a></code><a href='#impl-Parse-51' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-62' class="method hidden"><code id='parse.v-63'>fn <a href='#method.parse-62' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-52' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprLit.html" title="struct syn::ExprLit">ExprLit</a></code><a href='#impl-Parse-52' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#1923-1930' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-63' class="method hidden"><code id='parse.v-64'>fn <a href='#method.parse-63' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#1924-1929' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-53' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprLoop.html" title="struct syn::ExprLoop">ExprLoop</a></code><a href='#impl-Parse-53' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2078-2095' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-64' class="method hidden"><code id='parse.v-65'>fn <a href='#method.parse-64' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2079-2094' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-54' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprMacro.html" title="struct syn::ExprMacro">ExprMacro</a></code><a href='#impl-Parse-54' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-65' class="method hidden"><code id='parse.v-66'>fn <a href='#method.parse-65' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-55' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprMatch.html" title="struct syn::ExprMatch">ExprMatch</a></code><a href='#impl-Parse-55' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2098-2120' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-66' class="method hidden"><code id='parse.v-67'>fn <a href='#method.parse-66' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2099-2119' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-56' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprMethodCall.html" title="struct syn::ExprMethodCall">ExprMethodCall</a></code><a href='#impl-Parse-56' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-67' class="method hidden"><code id='parse.v-68'>fn <a href='#method.parse-67' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-57' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprParen.html" title="struct syn::ExprParen">ExprParen</a></code><a href='#impl-Parse-57' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-68' class="method hidden"><code id='parse.v-69'>fn <a href='#method.parse-68' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-58' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprPath.html" title="struct syn::ExprPath">ExprPath</a></code><a href='#impl-Parse-58' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2549-2560' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-69' class="method hidden"><code id='parse.v-70'>fn <a href='#method.parse-69' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2550-2559' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-59' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprRange.html" title="struct syn::ExprRange">ExprRange</a></code><a href='#impl-Parse-59' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-70' class="method hidden"><code id='parse.v-71'>fn <a href='#method.parse-70' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-60' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprReference.html" title="struct syn::ExprReference">ExprReference</a></code><a href='#impl-Parse-60' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-71' class="method hidden"><code id='parse.v-72'>fn <a href='#method.parse-71' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-61' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprRepeat.html" title="struct syn::ExprRepeat">ExprRepeat</a></code><a href='#impl-Parse-61' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-72' class="method hidden"><code id='parse.v-73'>fn <a href='#method.parse-72' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-62' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprReturn.html" title="struct syn::ExprReturn">ExprReturn</a></code><a href='#impl-Parse-62' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-73' class="method hidden"><code id='parse.v-74'>fn <a href='#method.parse-73' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-63' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprStruct.html" title="struct syn::ExprStruct">ExprStruct</a></code><a href='#impl-Parse-63' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-74' class="method hidden"><code id='parse.v-75'>fn <a href='#method.parse-74' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-64' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprTry.html" title="struct syn::ExprTry">ExprTry</a></code><a href='#impl-Parse-64' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-75' class="method hidden"><code id='parse.v-76'>fn <a href='#method.parse-75' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-65' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprTryBlock.html" title="struct syn::ExprTryBlock">ExprTryBlock</a></code><a href='#impl-Parse-65' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-76' class="method hidden"><code id='parse.v-77'>fn <a href='#method.parse-76' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-66' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprTuple.html" title="struct syn::ExprTuple">ExprTuple</a></code><a href='#impl-Parse-66' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-77' class="method hidden"><code id='parse.v-78'>fn <a href='#method.parse-77' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-67' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprType.html" title="struct syn::ExprType">ExprType</a></code><a href='#impl-Parse-67' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-78' class="method hidden"><code id='parse.v-79'>fn <a href='#method.parse-78' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-68' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprUnary.html" title="struct syn::ExprUnary">ExprUnary</a></code><a href='#impl-Parse-68' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-79' class="method hidden"><code id='parse.v-80'>fn <a href='#method.parse-79' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-69' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprUnsafe.html" title="struct syn::ExprUnsafe">ExprUnsafe</a></code><a href='#impl-Parse-69' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-80' class="method hidden"><code id='parse.v-81'>fn <a href='#method.parse-80' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-70' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprWhile.html" title="struct syn::ExprWhile">ExprWhile</a></code><a href='#impl-Parse-70' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2306-2325' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-81' class="method hidden"><code id='parse.v-82'>fn <a href='#method.parse-81' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2307-2324' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-71' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ExprYield.html" title="struct syn::ExprYield">ExprYield</a></code><a href='#impl-Parse-71' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2130-2141' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-82' class="method hidden"><code id='parse.v-83'>fn <a href='#method.parse-82' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2131-2140' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-72' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.FieldValue.html" title="struct syn::FieldValue">FieldValue</a></code><a href='#impl-Parse-72' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2400-2425' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-83' class="method hidden"><code id='parse.v-84'>fn <a href='#method.parse-83' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2401-2424' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-73' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.FieldsNamed.html" title="struct syn::FieldsNamed">FieldsNamed</a></code><a href='#impl-Parse-73' class='anchor'></a><a class='srclink' href='../../src/syn/data.rs.html#252-260' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-84' class="method hidden"><code id='parse.v-85'>fn <a href='#method.parse-84' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/data.rs.html#253-259' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-74' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.FieldsUnnamed.html" title="struct syn::FieldsUnnamed">FieldsUnnamed</a></code><a href='#impl-Parse-74' class='anchor'></a><a class='srclink' href='../../src/syn/data.rs.html#262-270' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-85' class="method hidden"><code id='parse.v-86'>fn <a href='#method.parse-85' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/data.rs.html#263-269' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-75' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.File.html" title="struct syn::File">File</a></code><a href='#impl-Parse-75' class='anchor'></a><a class='srclink' href='../../src/syn/file.rs.html#83-97' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-86' class="method hidden"><code id='parse.v-87'>fn <a href='#method.parse-86' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/file.rs.html#84-96' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-76' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ForeignItemFn.html" title="struct syn::ForeignItemFn">ForeignItemFn</a></code><a href='#impl-Parse-76' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1644-1700' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-87' class="method hidden"><code id='parse.v-88'>fn <a href='#method.parse-87' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1645-1699' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-77' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ForeignItemMacro.html" title="struct syn::ForeignItemMacro">ForeignItemMacro</a></code><a href='#impl-Parse-77' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1729-1744' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-88' class="method hidden"><code id='parse.v-89'>fn <a href='#method.parse-88' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1730-1743' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-78' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ForeignItemStatic.html" title="struct syn::ForeignItemStatic">ForeignItemStatic</a></code><a href='#impl-Parse-78' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1702-1715' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-89' class="method hidden"><code id='parse.v-90'>fn <a href='#method.parse-89' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1703-1714' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-79' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ForeignItemType.html" title="struct syn::ForeignItemType">ForeignItemType</a></code><a href='#impl-Parse-79' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1717-1727' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-90' class="method hidden"><code id='parse.v-91'>fn <a href='#method.parse-90' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1718-1726' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-80' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Generics.html" title="struct syn::Generics">Generics</a></code><a href='#impl-Parse-80' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#514-570' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-91' class="method hidden"><code id='parse.v-92'>fn <a href='#method.parse-91' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#515-569' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-81' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Ident.html" title="struct syn::Ident">Ident</a></code><a href='#impl-Parse-81' class='anchor'></a><a class='srclink' href='../../src/syn/ident.rs.html#39-50' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-92' class="method hidden"><code id='parse.v-93'>fn <a href='#method.parse-92' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ident.rs.html#40-49' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-82' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ImplItemConst.html" title="struct syn::ImplItemConst">ImplItemConst</a></code><a href='#impl-Parse-82' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2362-2377' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-93' class="method hidden"><code id='parse.v-94'>fn <a href='#method.parse-93' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2363-2376' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-83' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ImplItemMacro.html" title="struct syn::ImplItemMacro">ImplItemMacro</a></code><a href='#impl-Parse-83' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2449-2464' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-94' class="method hidden"><code id='parse.v-95'>fn <a href='#method.parse-94' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2450-2463' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-84' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ImplItemMethod.html" title="struct syn::ImplItemMethod">ImplItemMethod</a></code><a href='#impl-Parse-84' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2379-2427' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-95' class="method hidden"><code id='parse.v-96'>fn <a href='#method.parse-95' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2380-2426' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-85' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ImplItemType.html" title="struct syn::ImplItemType">ImplItemType</a></code><a href='#impl-Parse-85' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2429-2447' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-96' class="method hidden"><code id='parse.v-97'>fn <a href='#method.parse-96' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2430-2446' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-86' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Index.html" title="struct syn::Index">Index</a></code><a href='#impl-Parse-86' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2627-2642' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-97' class="method hidden"><code id='parse.v-98'>fn <a href='#method.parse-97' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2628-2641' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-87' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemConst.html" title="struct syn::ItemConst">ItemConst</a></code><a href='#impl-Parse-87' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1392-1413' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-98' class="method hidden"><code id='parse.v-99'>fn <a href='#method.parse-98' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1393-1412' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-88' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemEnum.html" title="struct syn::ItemEnum">ItemEnum</a></code><a href='#impl-Parse-88' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1835-1856' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-99' class="method hidden"><code id='parse.v-100'>fn <a href='#method.parse-99' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1836-1855' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-89' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemExternCrate.html" title="struct syn::ItemExternCrate">ItemExternCrate</a></code><a href='#impl-Parse-89' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1281-1311' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-100' class="method hidden"><code id='parse.v-101'>fn <a href='#method.parse-100' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1282-1310' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-90' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemFn.html" title="struct syn::ItemFn">ItemFn</a></code><a href='#impl-Parse-90' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1415-1476' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-101' class="method hidden"><code id='parse.v-102'>fn <a href='#method.parse-101' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1416-1475' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-91' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemForeignMod.html" title="struct syn::ItemForeignMod">ItemForeignMod</a></code><a href='#impl-Parse-91' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1580-1600' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-102' class="method hidden"><code id='parse.v-103'>fn <a href='#method.parse-102' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1581-1599' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-92' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemImpl.html" title="struct syn::ItemImpl">ItemImpl</a></code><a href='#impl-Parse-92' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2228-2290' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-103' class="method hidden"><code id='parse.v-104'>fn <a href='#method.parse-103' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2229-2289' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-93' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemMacro.html" title="struct syn::ItemMacro">ItemMacro</a></code><a href='#impl-Parse-93' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1215-1239' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-104' class="method hidden"><code id='parse.v-105'>fn <a href='#method.parse-104' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1216-1238' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-94' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemMacro2.html" title="struct syn::ItemMacro2">ItemMacro2</a></code><a href='#impl-Parse-94' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1241-1279' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-105' class="method hidden"><code id='parse.v-106'>fn <a href='#method.parse-105' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1242-1278' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-95' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemMod.html" title="struct syn::ItemMod">ItemMod</a></code><a href='#impl-Parse-95' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1539-1578' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-106' class="method hidden"><code id='parse.v-107'>fn <a href='#method.parse-106' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1540-1577' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-96' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemStatic.html" title="struct syn::ItemStatic">ItemStatic</a></code><a href='#impl-Parse-96' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1375-1390' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-107' class="method hidden"><code id='parse.v-108'>fn <a href='#method.parse-107' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1376-1389' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-97' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemStruct.html" title="struct syn::ItemStruct">ItemStruct</a></code><a href='#impl-Parse-97' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1812-1833' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-108' class="method hidden"><code id='parse.v-109'>fn <a href='#method.parse-108' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1813-1832' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-98' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemTrait.html" title="struct syn::ItemTrait">ItemTrait</a></code><a href='#impl-Parse-98' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1908-1928' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-109' class="method hidden"><code id='parse.v-110'>fn <a href='#method.parse-109' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1909-1927' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-99' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemTraitAlias.html" title="struct syn::ItemTraitAlias">ItemTraitAlias</a></code><a href='#impl-Parse-99' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1980-1985' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-110' class="method hidden"><code id='parse.v-111'>fn <a href='#method.parse-110' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1981-1984' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-100' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemType.html" title="struct syn::ItemType">ItemType</a></code><a href='#impl-Parse-100' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1746-1763' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-111' class="method hidden"><code id='parse.v-112'>fn <a href='#method.parse-111' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1747-1762' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-101' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemUnion.html" title="struct syn::ItemUnion">ItemUnion</a></code><a href='#impl-Parse-101' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1858-1878' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-112' class="method hidden"><code id='parse.v-113'>fn <a href='#method.parse-112' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1859-1877' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-102' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ItemUse.html" title="struct syn::ItemUse">ItemUse</a></code><a href='#impl-Parse-102' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1313-1324' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-113' class="method hidden"><code id='parse.v-114'>fn <a href='#method.parse-113' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1314-1323' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-103' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Label.html" title="struct syn::Label">Label</a></code><a href='#impl-Parse-103' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2328-2335' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-114' class="method hidden"><code id='parse.v-115'>fn <a href='#method.parse-114' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/expr.rs.html#2329-2334' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-104' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Lifetime.html" title="struct syn::Lifetime">Lifetime</a></code><a href='#impl-Parse-104' class='anchor'></a><a class='srclink' href='../../src/syn/lifetime.rs.html#114-122' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-115' class="method hidden"><code id='parse.v-116'>fn <a href='#method.parse-115' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lifetime.rs.html#115-121' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-105' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.LifetimeDef.html" title="struct syn::LifetimeDef">LifetimeDef</a></code><a href='#impl-Parse-105' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#598-633' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-116' class="method hidden"><code id='parse.v-117'>fn <a href='#method.parse-116' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#599-632' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-106' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.LitBool.html" title="struct syn::LitBool">LitBool</a></code><a href='#impl-Parse-106' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#781-789' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-117' class="method hidden"><code id='parse.v-118'>fn <a href='#method.parse-117' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lit.rs.html#782-788' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-107' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.LitByte.html" title="struct syn::LitByte">LitByte</a></code><a href='#impl-Parse-107' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#741-749' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-118' class="method hidden"><code id='parse.v-119'>fn <a href='#method.parse-118' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lit.rs.html#742-748' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-108' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.LitByteStr.html" title="struct syn::LitByteStr">LitByteStr</a></code><a href='#impl-Parse-108' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#731-739' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-119' class="method hidden"><code id='parse.v-120'>fn <a href='#method.parse-119' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lit.rs.html#732-738' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-109' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.LitChar.html" title="struct syn::LitChar">LitChar</a></code><a href='#impl-Parse-109' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#751-759' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-120' class="method hidden"><code id='parse.v-121'>fn <a href='#method.parse-120' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lit.rs.html#752-758' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-110' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.LitFloat.html" title="struct syn::LitFloat">LitFloat</a></code><a href='#impl-Parse-110' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#771-779' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-121' class="method hidden"><code id='parse.v-122'>fn <a href='#method.parse-121' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lit.rs.html#772-778' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-111' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.LitInt.html" title="struct syn::LitInt">LitInt</a></code><a href='#impl-Parse-111' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#761-769' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-122' class="method hidden"><code id='parse.v-123'>fn <a href='#method.parse-122' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lit.rs.html#762-768' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-112' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.LitStr.html" title="struct syn::LitStr">LitStr</a></code><a href='#impl-Parse-112' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#721-729' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-123' class="method hidden"><code id='parse.v-124'>fn <a href='#method.parse-123' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/lit.rs.html#722-728' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-113' class='impl'><code class='in-band'>impl Parse for syn::<a class="struct" href="../../syn/struct.Macro.html" title="struct syn::Macro">Macro</a></code><a href='#impl-Parse-113' class='anchor'></a><a class='srclink' href='../../src/syn/mac.rs.html#199-213' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-124' class="method hidden"><code id='parse.v-125'>fn <a href='#method.parse-124' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/mac.rs.html#200-212' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-114' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.MetaList.html" title="struct syn::MetaList">MetaList</a></code><a href='#impl-Parse-114' class='anchor'></a><a class='srclink' href='../../src/syn/attr.rs.html#556-561' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-125' class="method hidden"><code id='parse.v-126'>fn <a href='#method.parse-125' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/attr.rs.html#557-560' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-115' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.MetaNameValue.html" title="struct syn::MetaNameValue">MetaNameValue</a></code><a href='#impl-Parse-115' class='anchor'></a><a class='srclink' href='../../src/syn/attr.rs.html#563-568' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-126' class="method hidden"><code id='parse.v-127'>fn <a href='#method.parse-126' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/attr.rs.html#564-567' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-116' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.ParenthesizedGenericArguments.html" title="struct syn::ParenthesizedGenericArguments">ParenthesizedGenericArguments</a></code><a href='#impl-Parse-116' class='anchor'></a><a class='srclink' href='../../src/syn/path.rs.html#275-284' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-127' class="method hidden"><code id='parse.v-128'>fn <a href='#method.parse-127' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/path.rs.html#276-283' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-117' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Path.html" title="struct syn::Path">Path</a></code><a href='#impl-Parse-117' class='anchor'></a><a class='srclink' href='../../src/syn/path.rs.html#212-216' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-128' class="method hidden"><code id='parse.v-129'>fn <a href='#method.parse-128' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/path.rs.html#213-215' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-118' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.PathSegment.html" title="struct syn::PathSegment">PathSegment</a></code><a href='#impl-Parse-118' class='anchor'></a><a class='srclink' href='../../src/syn/path.rs.html#286-290' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-129' class="method hidden"><code id='parse.v-130'>fn <a href='#method.parse-129' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/path.rs.html#287-289' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-119' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Receiver.html" title="struct syn::Receiver">Receiver</a></code><a href='#impl-Parse-119' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#1497-1512' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-130' class="method hidden"><code id='parse.v-131'>fn <a href='#method.parse-130' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#1498-1511' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-120' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TraitBound.html" title="struct syn::TraitBound">TraitBound</a></code><a href='#impl-Parse-120' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#741-759' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-131' class="method hidden"><code id='parse.v-132'>fn <a href='#method.parse-131' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#742-758' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-121' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TraitItemConst.html" title="struct syn::TraitItemConst">TraitItemConst</a></code><a href='#impl-Parse-121' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2091-2111' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-132' class="method hidden"><code id='parse.v-133'>fn <a href='#method.parse-132' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2092-2110' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-122' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TraitItemMacro.html" title="struct syn::TraitItemMacro">TraitItemMacro</a></code><a href='#impl-Parse-122' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2211-2226' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-133' class="method hidden"><code id='parse.v-134'>fn <a href='#method.parse-133' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2212-2225' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-123' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TraitItemMethod.html" title="struct syn::TraitItemMethod">TraitItemMethod</a></code><a href='#impl-Parse-123' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2113-2167' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-134' class="method hidden"><code id='parse.v-135'>fn <a href='#method.parse-134' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2114-2166' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-124' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TraitItemType.html" title="struct syn::TraitItemType">TraitItemType</a></code><a href='#impl-Parse-124' class='anchor'></a><a class='srclink' href='../../src/syn/item.rs.html#2169-2209' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-135' class="method hidden"><code id='parse.v-136'>fn <a href='#method.parse-135' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/item.rs.html#2170-2208' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-125' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeArray.html" title="struct syn::TypeArray">TypeArray</a></code><a href='#impl-Parse-125' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#656-666' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-136' class="method hidden"><code id='parse.v-137'>fn <a href='#method.parse-136' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#657-665' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-126' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeBareFn.html" title="struct syn::TypeBareFn">TypeBareFn</a></code><a href='#impl-Parse-126' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#702-734' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-137' class="method hidden"><code id='parse.v-138'>fn <a href='#method.parse-137' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#703-733' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-127' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeGroup.html" title="struct syn::TypeGroup">TypeGroup</a></code><a href='#impl-Parse-127' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#877-885' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-138' class="method hidden"><code id='parse.v-139'>fn <a href='#method.parse-138' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#878-884' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-128' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeImplTrait.html" title="struct syn::TypeImplTrait">TypeImplTrait</a></code><a href='#impl-Parse-128' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#856-875' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-139' class="method hidden"><code id='parse.v-140'>fn <a href='#method.parse-139' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#857-874' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-129' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeInfer.html" title="struct syn::TypeInfer">TypeInfer</a></code><a href='#impl-Parse-129' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#744-750' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-140' class="method hidden"><code id='parse.v-141'>fn <a href='#method.parse-140' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#745-749' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-130' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeMacro.html" title="struct syn::TypeMacro">TypeMacro</a></code><a href='#impl-Parse-130' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#762-768' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-141' class="method hidden"><code id='parse.v-142'>fn <a href='#method.parse-141' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#763-767' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-131' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeNever.html" title="struct syn::TypeNever">TypeNever</a></code><a href='#impl-Parse-131' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#736-742' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-142' class="method hidden"><code id='parse.v-143'>fn <a href='#method.parse-142' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#737-741' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-132' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeParam.html" title="struct syn::TypeParam">TypeParam</a></code><a href='#impl-Parse-132' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#666-721' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-143' class="method hidden"><code id='parse.v-144'>fn <a href='#method.parse-143' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#667-720' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-133' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeParen.html" title="struct syn::TypeParen">TypeParen</a></code><a href='#impl-Parse-133' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#887-891' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-144' class="method hidden"><code id='parse.v-145'>fn <a href='#method.parse-144' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#888-890' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-134' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypePath.html" title="struct syn::TypePath">TypePath</a></code><a href='#impl-Parse-134' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#770-782' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-145' class="method hidden"><code id='parse.v-146'>fn <a href='#method.parse-145' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#771-781' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-135' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypePtr.html" title="struct syn::TypePtr">TypePtr</a></code><a href='#impl-Parse-135' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#668-688' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-146' class="method hidden"><code id='parse.v-147'>fn <a href='#method.parse-146' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#669-687' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-136' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeReference.html" title="struct syn::TypeReference">TypeReference</a></code><a href='#impl-Parse-136' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#690-700' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-147' class="method hidden"><code id='parse.v-148'>fn <a href='#method.parse-147' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#691-699' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-137' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeSlice.html" title="struct syn::TypeSlice">TypeSlice</a></code><a href='#impl-Parse-137' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#646-654' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-148' class="method hidden"><code id='parse.v-149'>fn <a href='#method.parse-148' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#647-653' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-138' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeTraitObject.html" title="struct syn::TypeTraitObject">TypeTraitObject</a></code><a href='#impl-Parse-138' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#806-810' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-149' class="method hidden"><code id='parse.v-150'>fn <a href='#method.parse-149' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#807-809' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-139' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.TypeTuple.html" title="struct syn::TypeTuple">TypeTuple</a></code><a href='#impl-Parse-139' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#752-760' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-150' class="method hidden"><code id='parse.v-151'>fn <a href='#method.parse-150' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/ty.rs.html#753-759' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-140' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.Variant.html" title="struct syn::Variant">Variant</a></code><a href='#impl-Parse-140' class='anchor'></a><a class='srclink' href='../../src/syn/data.rs.html#225-250' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-151' class="method hidden"><code id='parse.v-152'>fn <a href='#method.parse-151' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/data.rs.html#226-249' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-141' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a></code><a href='#impl-Parse-141' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#794-822' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-152' class="method hidden"><code id='parse.v-153'>fn <a href='#method.parse-152' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/generics.rs.html#795-821' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-142' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Abstract.html" title="struct syn::token::Abstract">Abstract</a></code><a href='#impl-Parse-142' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-153' class="method hidden"><code id='parse.v-154'>fn <a href='#method.parse-153' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-143' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Add.html" title="struct syn::token::Add">Add</a></code><a href='#impl-Parse-143' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-154' class="method hidden"><code id='parse.v-155'>fn <a href='#method.parse-154' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-144' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.AddEq.html" title="struct syn::token::AddEq">AddEq</a></code><a href='#impl-Parse-144' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-155' class="method hidden"><code id='parse.v-156'>fn <a href='#method.parse-155' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-145' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.And.html" title="struct syn::token::And">And</a></code><a href='#impl-Parse-145' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-156' class="method hidden"><code id='parse.v-157'>fn <a href='#method.parse-156' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-146' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.AndAnd.html" title="struct syn::token::AndAnd">AndAnd</a></code><a href='#impl-Parse-146' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-157' class="method hidden"><code id='parse.v-158'>fn <a href='#method.parse-157' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-147' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.AndEq.html" title="struct syn::token::AndEq">AndEq</a></code><a href='#impl-Parse-147' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-158' class="method hidden"><code id='parse.v-159'>fn <a href='#method.parse-158' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-148' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.As.html" title="struct syn::token::As">As</a></code><a href='#impl-Parse-148' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-159' class="method hidden"><code id='parse.v-160'>fn <a href='#method.parse-159' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-149' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Async.html" title="struct syn::token::Async">Async</a></code><a href='#impl-Parse-149' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-160' class="method hidden"><code id='parse.v-161'>fn <a href='#method.parse-160' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-150' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.At.html" title="struct syn::token::At">At</a></code><a href='#impl-Parse-150' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-161' class="method hidden"><code id='parse.v-162'>fn <a href='#method.parse-161' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-151' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Auto.html" title="struct syn::token::Auto">Auto</a></code><a href='#impl-Parse-151' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-162' class="method hidden"><code id='parse.v-163'>fn <a href='#method.parse-162' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-152' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Await.html" title="struct syn::token::Await">Await</a></code><a href='#impl-Parse-152' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-163' class="method hidden"><code id='parse.v-164'>fn <a href='#method.parse-163' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-153' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Bang.html" title="struct syn::token::Bang">Bang</a></code><a href='#impl-Parse-153' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-164' class="method hidden"><code id='parse.v-165'>fn <a href='#method.parse-164' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-154' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Become.html" title="struct syn::token::Become">Become</a></code><a href='#impl-Parse-154' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-165' class="method hidden"><code id='parse.v-166'>fn <a href='#method.parse-165' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-155' class='impl'><code class='in-band'>impl Parse for syn::token::<a class="struct" href="../../syn/token/struct.Box.html" title="struct syn::token::Box">Box</a></code><a href='#impl-Parse-155' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-166' class="method hidden"><code id='parse.v-167'>fn <a href='#method.parse-166' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-156' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Break.html" title="struct syn::token::Break">Break</a></code><a href='#impl-Parse-156' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-167' class="method hidden"><code id='parse.v-168'>fn <a href='#method.parse-167' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-157' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Caret.html" title="struct syn::token::Caret">Caret</a></code><a href='#impl-Parse-157' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-168' class="method hidden"><code id='parse.v-169'>fn <a href='#method.parse-168' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-158' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.CaretEq.html" title="struct syn::token::CaretEq">CaretEq</a></code><a href='#impl-Parse-158' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-169' class="method hidden"><code id='parse.v-170'>fn <a href='#method.parse-169' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-159' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Colon.html" title="struct syn::token::Colon">Colon</a></code><a href='#impl-Parse-159' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-170' class="method hidden"><code id='parse.v-171'>fn <a href='#method.parse-170' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-160' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Colon2.html" title="struct syn::token::Colon2">Colon2</a></code><a href='#impl-Parse-160' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-171' class="method hidden"><code id='parse.v-172'>fn <a href='#method.parse-171' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-161' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Comma.html" title="struct syn::token::Comma">Comma</a></code><a href='#impl-Parse-161' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-172' class="method hidden"><code id='parse.v-173'>fn <a href='#method.parse-172' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-162' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Const.html" title="struct syn::token::Const">Const</a></code><a href='#impl-Parse-162' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-173' class="method hidden"><code id='parse.v-174'>fn <a href='#method.parse-173' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-163' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Continue.html" title="struct syn::token::Continue">Continue</a></code><a href='#impl-Parse-163' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-174' class="method hidden"><code id='parse.v-175'>fn <a href='#method.parse-174' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-164' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Crate.html" title="struct syn::token::Crate">Crate</a></code><a href='#impl-Parse-164' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-175' class="method hidden"><code id='parse.v-176'>fn <a href='#method.parse-175' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-165' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Default.html" title="struct syn::token::Default">Default</a></code><a href='#impl-Parse-165' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-176' class="method hidden"><code id='parse.v-177'>fn <a href='#method.parse-176' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-166' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Div.html" title="struct syn::token::Div">Div</a></code><a href='#impl-Parse-166' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-177' class="method hidden"><code id='parse.v-178'>fn <a href='#method.parse-177' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-167' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.DivEq.html" title="struct syn::token::DivEq">DivEq</a></code><a href='#impl-Parse-167' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-178' class="method hidden"><code id='parse.v-179'>fn <a href='#method.parse-178' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-168' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Do.html" title="struct syn::token::Do">Do</a></code><a href='#impl-Parse-168' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-179' class="method hidden"><code id='parse.v-180'>fn <a href='#method.parse-179' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-169' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Dollar.html" title="struct syn::token::Dollar">Dollar</a></code><a href='#impl-Parse-169' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-180' class="method hidden"><code id='parse.v-181'>fn <a href='#method.parse-180' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-170' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Dot.html" title="struct syn::token::Dot">Dot</a></code><a href='#impl-Parse-170' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-181' class="method hidden"><code id='parse.v-182'>fn <a href='#method.parse-181' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-171' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Dot2.html" title="struct syn::token::Dot2">Dot2</a></code><a href='#impl-Parse-171' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-182' class="method hidden"><code id='parse.v-183'>fn <a href='#method.parse-182' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-172' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Dot3.html" title="struct syn::token::Dot3">Dot3</a></code><a href='#impl-Parse-172' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-183' class="method hidden"><code id='parse.v-184'>fn <a href='#method.parse-183' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-173' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.DotDotEq.html" title="struct syn::token::DotDotEq">DotDotEq</a></code><a href='#impl-Parse-173' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-184' class="method hidden"><code id='parse.v-185'>fn <a href='#method.parse-184' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-174' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Dyn.html" title="struct syn::token::Dyn">Dyn</a></code><a href='#impl-Parse-174' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-185' class="method hidden"><code id='parse.v-186'>fn <a href='#method.parse-185' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-175' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Else.html" title="struct syn::token::Else">Else</a></code><a href='#impl-Parse-175' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-186' class="method hidden"><code id='parse.v-187'>fn <a href='#method.parse-186' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-176' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Enum.html" title="struct syn::token::Enum">Enum</a></code><a href='#impl-Parse-176' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-187' class="method hidden"><code id='parse.v-188'>fn <a href='#method.parse-187' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-177' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Eq.html" title="struct syn::token::Eq">Eq</a></code><a href='#impl-Parse-177' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-188' class="method hidden"><code id='parse.v-189'>fn <a href='#method.parse-188' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-178' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.EqEq.html" title="struct syn::token::EqEq">EqEq</a></code><a href='#impl-Parse-178' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-189' class="method hidden"><code id='parse.v-190'>fn <a href='#method.parse-189' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-179' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Extern.html" title="struct syn::token::Extern">Extern</a></code><a href='#impl-Parse-179' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-190' class="method hidden"><code id='parse.v-191'>fn <a href='#method.parse-190' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-180' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.FatArrow.html" title="struct syn::token::FatArrow">FatArrow</a></code><a href='#impl-Parse-180' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-191' class="method hidden"><code id='parse.v-192'>fn <a href='#method.parse-191' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-181' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Final.html" title="struct syn::token::Final">Final</a></code><a href='#impl-Parse-181' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-192' class="method hidden"><code id='parse.v-193'>fn <a href='#method.parse-192' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-182' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Fn.html" title="struct syn::token::Fn">Fn</a></code><a href='#impl-Parse-182' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-193' class="method hidden"><code id='parse.v-194'>fn <a href='#method.parse-193' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-183' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.For.html" title="struct syn::token::For">For</a></code><a href='#impl-Parse-183' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-194' class="method hidden"><code id='parse.v-195'>fn <a href='#method.parse-194' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-184' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Ge.html" title="struct syn::token::Ge">Ge</a></code><a href='#impl-Parse-184' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-195' class="method hidden"><code id='parse.v-196'>fn <a href='#method.parse-195' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-185' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Gt.html" title="struct syn::token::Gt">Gt</a></code><a href='#impl-Parse-185' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-196' class="method hidden"><code id='parse.v-197'>fn <a href='#method.parse-196' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-186' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.If.html" title="struct syn::token::If">If</a></code><a href='#impl-Parse-186' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-197' class="method hidden"><code id='parse.v-198'>fn <a href='#method.parse-197' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-187' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Impl.html" title="struct syn::token::Impl">Impl</a></code><a href='#impl-Parse-187' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-198' class="method hidden"><code id='parse.v-199'>fn <a href='#method.parse-198' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-188' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.In.html" title="struct syn::token::In">In</a></code><a href='#impl-Parse-188' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-199' class="method hidden"><code id='parse.v-200'>fn <a href='#method.parse-199' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-189' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.LArrow.html" title="struct syn::token::LArrow">LArrow</a></code><a href='#impl-Parse-189' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-200' class="method hidden"><code id='parse.v-201'>fn <a href='#method.parse-200' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-190' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Le.html" title="struct syn::token::Le">Le</a></code><a href='#impl-Parse-190' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-201' class="method hidden"><code id='parse.v-202'>fn <a href='#method.parse-201' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-191' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Let.html" title="struct syn::token::Let">Let</a></code><a href='#impl-Parse-191' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-202' class="method hidden"><code id='parse.v-203'>fn <a href='#method.parse-202' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-192' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Loop.html" title="struct syn::token::Loop">Loop</a></code><a href='#impl-Parse-192' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-203' class="method hidden"><code id='parse.v-204'>fn <a href='#method.parse-203' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-193' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Lt.html" title="struct syn::token::Lt">Lt</a></code><a href='#impl-Parse-193' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-204' class="method hidden"><code id='parse.v-205'>fn <a href='#method.parse-204' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-194' class='impl'><code class='in-band'>impl Parse for syn::token::<a class="struct" href="../../syn/token/struct.Macro.html" title="struct syn::token::Macro">Macro</a></code><a href='#impl-Parse-194' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-205' class="method hidden"><code id='parse.v-206'>fn <a href='#method.parse-205' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-195' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Match.html" title="struct syn::token::Match">Match</a></code><a href='#impl-Parse-195' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-206' class="method hidden"><code id='parse.v-207'>fn <a href='#method.parse-206' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-196' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Mod.html" title="struct syn::token::Mod">Mod</a></code><a href='#impl-Parse-196' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-207' class="method hidden"><code id='parse.v-208'>fn <a href='#method.parse-207' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-197' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Move.html" title="struct syn::token::Move">Move</a></code><a href='#impl-Parse-197' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-208' class="method hidden"><code id='parse.v-209'>fn <a href='#method.parse-208' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-198' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.MulEq.html" title="struct syn::token::MulEq">MulEq</a></code><a href='#impl-Parse-198' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-209' class="method hidden"><code id='parse.v-210'>fn <a href='#method.parse-209' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-199' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Mut.html" title="struct syn::token::Mut">Mut</a></code><a href='#impl-Parse-199' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-210' class="method hidden"><code id='parse.v-211'>fn <a href='#method.parse-210' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-200' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Ne.html" title="struct syn::token::Ne">Ne</a></code><a href='#impl-Parse-200' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-211' class="method hidden"><code id='parse.v-212'>fn <a href='#method.parse-211' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-201' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Or.html" title="struct syn::token::Or">Or</a></code><a href='#impl-Parse-201' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-212' class="method hidden"><code id='parse.v-213'>fn <a href='#method.parse-212' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-202' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.OrEq.html" title="struct syn::token::OrEq">OrEq</a></code><a href='#impl-Parse-202' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-213' class="method hidden"><code id='parse.v-214'>fn <a href='#method.parse-213' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-203' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.OrOr.html" title="struct syn::token::OrOr">OrOr</a></code><a href='#impl-Parse-203' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-214' class="method hidden"><code id='parse.v-215'>fn <a href='#method.parse-214' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-204' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Override.html" title="struct syn::token::Override">Override</a></code><a href='#impl-Parse-204' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-215' class="method hidden"><code id='parse.v-216'>fn <a href='#method.parse-215' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-205' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Pound.html" title="struct syn::token::Pound">Pound</a></code><a href='#impl-Parse-205' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-216' class="method hidden"><code id='parse.v-217'>fn <a href='#method.parse-216' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-206' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Priv.html" title="struct syn::token::Priv">Priv</a></code><a href='#impl-Parse-206' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-217' class="method hidden"><code id='parse.v-218'>fn <a href='#method.parse-217' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-207' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Pub.html" title="struct syn::token::Pub">Pub</a></code><a href='#impl-Parse-207' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-218' class="method hidden"><code id='parse.v-219'>fn <a href='#method.parse-218' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-208' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Question.html" title="struct syn::token::Question">Question</a></code><a href='#impl-Parse-208' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-219' class="method hidden"><code id='parse.v-220'>fn <a href='#method.parse-219' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-209' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.RArrow.html" title="struct syn::token::RArrow">RArrow</a></code><a href='#impl-Parse-209' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-220' class="method hidden"><code id='parse.v-221'>fn <a href='#method.parse-220' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-210' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Ref.html" title="struct syn::token::Ref">Ref</a></code><a href='#impl-Parse-210' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-221' class="method hidden"><code id='parse.v-222'>fn <a href='#method.parse-221' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-211' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Rem.html" title="struct syn::token::Rem">Rem</a></code><a href='#impl-Parse-211' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-222' class="method hidden"><code id='parse.v-223'>fn <a href='#method.parse-222' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-212' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.RemEq.html" title="struct syn::token::RemEq">RemEq</a></code><a href='#impl-Parse-212' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-223' class="method hidden"><code id='parse.v-224'>fn <a href='#method.parse-223' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-213' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Return.html" title="struct syn::token::Return">Return</a></code><a href='#impl-Parse-213' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-224' class="method hidden"><code id='parse.v-225'>fn <a href='#method.parse-224' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-214' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.SelfType.html" title="struct syn::token::SelfType">SelfType</a></code><a href='#impl-Parse-214' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-225' class="method hidden"><code id='parse.v-226'>fn <a href='#method.parse-225' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-215' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.SelfValue.html" title="struct syn::token::SelfValue">SelfValue</a></code><a href='#impl-Parse-215' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-226' class="method hidden"><code id='parse.v-227'>fn <a href='#method.parse-226' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-216' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Semi.html" title="struct syn::token::Semi">Semi</a></code><a href='#impl-Parse-216' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-227' class="method hidden"><code id='parse.v-228'>fn <a href='#method.parse-227' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-217' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Shl.html" title="struct syn::token::Shl">Shl</a></code><a href='#impl-Parse-217' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-228' class="method hidden"><code id='parse.v-229'>fn <a href='#method.parse-228' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-218' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.ShlEq.html" title="struct syn::token::ShlEq">ShlEq</a></code><a href='#impl-Parse-218' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-229' class="method hidden"><code id='parse.v-230'>fn <a href='#method.parse-229' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-219' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Shr.html" title="struct syn::token::Shr">Shr</a></code><a href='#impl-Parse-219' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-230' class="method hidden"><code id='parse.v-231'>fn <a href='#method.parse-230' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-220' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.ShrEq.html" title="struct syn::token::ShrEq">ShrEq</a></code><a href='#impl-Parse-220' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-231' class="method hidden"><code id='parse.v-232'>fn <a href='#method.parse-231' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-221' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Star.html" title="struct syn::token::Star">Star</a></code><a href='#impl-Parse-221' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-232' class="method hidden"><code id='parse.v-233'>fn <a href='#method.parse-232' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-222' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Static.html" title="struct syn::token::Static">Static</a></code><a href='#impl-Parse-222' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-233' class="method hidden"><code id='parse.v-234'>fn <a href='#method.parse-233' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-223' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Struct.html" title="struct syn::token::Struct">Struct</a></code><a href='#impl-Parse-223' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-234' class="method hidden"><code id='parse.v-235'>fn <a href='#method.parse-234' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-224' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Sub.html" title="struct syn::token::Sub">Sub</a></code><a href='#impl-Parse-224' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-235' class="method hidden"><code id='parse.v-236'>fn <a href='#method.parse-235' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-225' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.SubEq.html" title="struct syn::token::SubEq">SubEq</a></code><a href='#impl-Parse-225' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-236' class="method hidden"><code id='parse.v-237'>fn <a href='#method.parse-236' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-226' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Super.html" title="struct syn::token::Super">Super</a></code><a href='#impl-Parse-226' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-237' class="method hidden"><code id='parse.v-238'>fn <a href='#method.parse-237' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-227' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Tilde.html" title="struct syn::token::Tilde">Tilde</a></code><a href='#impl-Parse-227' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#411-417' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-238' class="method hidden"><code id='parse.v-239'>fn <a href='#method.parse-238' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-228' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Trait.html" title="struct syn::token::Trait">Trait</a></code><a href='#impl-Parse-228' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-239' class="method hidden"><code id='parse.v-240'>fn <a href='#method.parse-239' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-229' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Try.html" title="struct syn::token::Try">Try</a></code><a href='#impl-Parse-229' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-240' class="method hidden"><code id='parse.v-241'>fn <a href='#method.parse-240' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-230' class='impl'><code class='in-band'>impl Parse for syn::token::<a class="struct" href="../../syn/token/struct.Type.html" title="struct syn::token::Type">Type</a></code><a href='#impl-Parse-230' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-241' class="method hidden"><code id='parse.v-242'>fn <a href='#method.parse-241' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-231' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Typeof.html" title="struct syn::token::Typeof">Typeof</a></code><a href='#impl-Parse-231' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-242' class="method hidden"><code id='parse.v-243'>fn <a href='#method.parse-242' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-232' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Underscore.html" title="struct syn::token::Underscore">Underscore</a></code><a href='#impl-Parse-232' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#511-527' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-243' class="method hidden"><code id='parse.v-244'>fn <a href='#method.parse-243' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#512-526' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-233' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Union.html" title="struct syn::token::Union">Union</a></code><a href='#impl-Parse-233' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-244' class="method hidden"><code id='parse.v-245'>fn <a href='#method.parse-244' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-234' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Unsafe.html" title="struct syn::token::Unsafe">Unsafe</a></code><a href='#impl-Parse-234' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-245' class="method hidden"><code id='parse.v-246'>fn <a href='#method.parse-245' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-235' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Unsized.html" title="struct syn::token::Unsized">Unsized</a></code><a href='#impl-Parse-235' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-246' class="method hidden"><code id='parse.v-247'>fn <a href='#method.parse-246' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-236' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Use.html" title="struct syn::token::Use">Use</a></code><a href='#impl-Parse-236' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-247' class="method hidden"><code id='parse.v-248'>fn <a href='#method.parse-247' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-237' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Virtual.html" title="struct syn::token::Virtual">Virtual</a></code><a href='#impl-Parse-237' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-248' class="method hidden"><code id='parse.v-249'>fn <a href='#method.parse-248' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-238' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Where.html" title="struct syn::token::Where">Where</a></code><a href='#impl-Parse-238' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-249' class="method hidden"><code id='parse.v-250'>fn <a href='#method.parse-249' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-239' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.While.html" title="struct syn::token::While">While</a></code><a href='#impl-Parse-239' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-250' class="method hidden"><code id='parse.v-251'>fn <a href='#method.parse-250' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-240' class='impl'><code class='in-band'>impl Parse for <a class="struct" href="../../syn/token/struct.Yield.html" title="struct syn::token::Yield">Yield</a></code><a href='#impl-Parse-240' class='anchor'></a><a class='srclink' href='../../src/syn/token.rs.html#293-299' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.parse-251' class="method hidden"><code id='parse.v-252'>fn <a href='#method.parse-251' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -&gt; <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div></div><span class='loading-content'>Loading content...</span><script type="text/javascript">window.inlined_types=new Set([]);</script><script type="text/javascript" async
src="../../implementors/syn/parse/trait.Parse.js">
</script></section><section id="search" class="content hidden"></section><section class="footer"></section><aside id="help" class="hidden"><div><h1 class="hidden">Help</h1><div class="shortcuts"><h2>Keyboard Shortcuts</h2><dl><dt><kbd>?</kbd></dt><dd>Show this help dialog</dd><dt><kbd>S</kbd></dt><dd>Focus the search field</dd><dt><kbd></kbd></dt><dd>Move up in search results</dd><dt><kbd></kbd></dt><dd>Move down in search results</dd><dt><kbd></kbd></dt><dd>Switch tab</dd><dt><kbd>&#9166;</kbd></dt><dd>Go to active search result</dd><dt><kbd>+</kbd></dt><dd>Expand all sections</dd><dt><kbd>-</kbd></dt><dd>Collapse all sections</dd></dl></div><div class="infos"><h2>Search Tricks</h2><p>Prefix searches with a type followed by a colon (e.g., <code>fn:</code>) to restrict the search to a given type.</p><p>Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>.</p><p>Search functions by type signature (e.g., <code>vec -> usize</code> or <code>* -> vec</code>)</p><p>Search multiple things at once by splitting your query with comma (e.g., <code>str,u8</code> or <code>String,struct:Vec,test</code>)</p></div></div></aside><script>window.rootPath = "../../";window.currentCrate = "syn";</script><script src="../../aliases.js"></script><script src="../../main.js"></script><script defer src="../../search-index.js"></script></body></html>