10 lines
148 KiB
HTML
10 lines
148 KiB
HTML
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="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">☰</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<T></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<Abi></a><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E">Option<BoundLifetimes></a><a href="#impl-Parse-for-Option%3CT%3E">Option<T></a><a href="#impl-Parse-for-Option%3CWhereClause%3E">Option<WhereClause></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'>−</span>]</a></span><a class='srclink' href='../../src/syn/parse.rs.html#221-223' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self>;
|
||
}</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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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%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><<a class="struct" href="../../syn/struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a>></code><a href='#impl-Parse-for-Option%3CBoundLifetimes%3E' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#620-628' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#621-627' 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><<a class="struct" href="../../syn/struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a>></code><a href='#impl-Parse-for-Option%3CWhereClause%3E' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#790-798' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#791-797' 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><<a class="struct" href="../../syn/struct.Abi.html" title="struct syn::Abi">Abi</a>></code><a href='#impl-Parse-for-Option%3CAbi%3E' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#809-817' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#810-816' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Box%3CT%3E' class='impl'><code class='in-band'>impl<T: <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a>> <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><T></code><a href='#impl-Parse-for-Box%3CT%3E' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#987-991' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/parse.rs.html#988-990' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-for-Option%3CT%3E' class='impl'><code class='in-band'>impl<T: <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>> <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><T></code><a href='#impl-Parse-for-Option%3CT%3E' class='anchor'></a><a class='srclink' href='../../src/syn/parse.rs.html#993-1001' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/parse.rs.html#994-1000' 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#1003-1007' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/parse.rs.html#1004-1006' 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#1009-1016' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/parse.rs.html#1010-1015' 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#1018-1031' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/parse.rs.html#1019-1030' 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#1033-1040' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/parse.rs.html#1034-1039' 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#1042-1049' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/parse.rs.html#1043-1048' 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.BareFnArgName.html" title="enum syn::BareFnArgName">BareFnArgName</a></code><a href='#impl-Parse' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#787-798' 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-10' class='fnname'>parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#788-797' 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.BinOp.html" title="enum syn::BinOp">BinOp</a></code><a href='#impl-Parse-1' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/op.rs.html#133-135' 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.Expr.html" title="enum syn::Expr">Expr</a></code><a href='#impl-Parse-2' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#1041-1045' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/expr.rs.html#1042-1044' 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.GenericArgument.html" title="enum syn::GenericArgument">GenericArgument</a></code><a href='#impl-Parse-3' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/path.rs.html#219-246' 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.GenericParam.html" title="enum syn::GenericParam">GenericParam</a></code><a href='#impl-Parse-4' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#536-560' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#537-559' 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.Lit.html" title="enum syn::Lit">Lit</a></code><a href='#impl-Parse-5' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#482-505' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lit.rs.html#483-504' 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.Member.html" title="enum syn::Member">Member</a></code><a href='#impl-Parse-6' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2766-2776' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/expr.rs.html#2767-2775' 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.Meta.html" title="enum syn::Meta">Meta</a></code><a href='#impl-Parse-7' class='anchor'></a><a class='srclink' href='../../src/syn/attr.rs.html#580-585' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/attr.rs.html#581-584' 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.NestedMeta.html" title="enum syn::NestedMeta">NestedMeta</a></code><a href='#impl-Parse-8' class='anchor'></a><a class='srclink' href='../../src/syn/attr.rs.html#601-611' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/attr.rs.html#602-610' 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.ReturnType.html" title="enum syn::ReturnType">ReturnType</a></code><a href='#impl-Parse-9' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#664-668' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#665-667' 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.TraitBoundModifier.html" title="enum syn::TraitBoundModifier">TraitBoundModifier</a></code><a href='#impl-Parse-10' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#727-735' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#728-734' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-11' 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-11' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#248-252' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#249-251' 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.TypeParamBound.html" title="enum syn::TypeParamBound">TypeParamBound</a></code><a href='#impl-Parse-12' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#687-703' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#688-702' 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.UnOp.html" title="enum syn::UnOp">UnOp</a></code><a href='#impl-Parse-13' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/op.rs.html#166-177' 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.Visibility.html" title="enum syn::Visibility">Visibility</a></code><a href='#impl-Parse-14' class='anchor'></a><a class='srclink' href='../../src/syn/data.rs.html#254-264' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/data.rs.html#255-263' 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.WherePredicate.html" title="enum syn::WherePredicate">WherePredicate</a></code><a href='#impl-Parse-15' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#800-857' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#801-856' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-16' 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-16' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#800-807' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#801-806' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-17' 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-17' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/path.rs.html#250-272' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-18' 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-18' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#767-785' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#768-784' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-19' 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-19' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/path.rs.html#323-329' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-20' 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-20' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#599-618' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#600-617' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-21' 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-21' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#737-758' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#738-757' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-22' 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-22' class='anchor'></a><a class='srclink' href='../../src/syn/derive.rs.html#76-142' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/derive.rs.html#77-141' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-23' 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-23' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#1708-1715' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/expr.rs.html#1709-1714' 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/struct.ExprPath.html" title="struct syn::ExprPath">ExprPath</a></code><a href='#impl-Parse-24' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2305-2320' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/expr.rs.html#2306-2319' 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.FieldsNamed.html" title="struct syn::FieldsNamed">FieldsNamed</a></code><a href='#impl-Parse-25' class='anchor'></a><a class='srclink' href='../../src/syn/data.rs.html#210-218' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/data.rs.html#211-217' 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.FieldsUnnamed.html" title="struct syn::FieldsUnnamed">FieldsUnnamed</a></code><a href='#impl-Parse-26' class='anchor'></a><a class='srclink' href='../../src/syn/data.rs.html#220-228' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/data.rs.html#221-227' 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.Generics.html" title="struct syn::Generics">Generics</a></code><a href='#impl-Parse-27' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#478-534' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#479-533' 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.Ident.html" title="struct syn::Ident">Ident</a></code><a href='#impl-Parse-28' class='anchor'></a><a class='srclink' href='../../src/syn/ident.rs.html#38-49' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ident.rs.html#39-48' 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.Index.html" title="struct syn::Index">Index</a></code><a href='#impl-Parse-29' class='anchor'></a><a class='srclink' href='../../src/syn/expr.rs.html#2826-2838' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/expr.rs.html#2827-2837' 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.Lifetime.html" title="struct syn::Lifetime">Lifetime</a></code><a href='#impl-Parse-30' class='anchor'></a><a class='srclink' href='../../src/syn/lifetime.rs.html#129-137' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lifetime.rs.html#130-136' 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.LifetimeDef.html" title="struct syn::LifetimeDef">LifetimeDef</a></code><a href='#impl-Parse-31' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#562-597' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#563-596' 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.LitBool.html" title="struct syn::LitBool">LitBool</a></code><a href='#impl-Parse-32' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#567-575' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lit.rs.html#568-574' 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.LitByte.html" title="struct syn::LitByte">LitByte</a></code><a href='#impl-Parse-33' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#527-535' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lit.rs.html#528-534' 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.LitByteStr.html" title="struct syn::LitByteStr">LitByteStr</a></code><a href='#impl-Parse-34' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#517-525' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lit.rs.html#518-524' 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.LitChar.html" title="struct syn::LitChar">LitChar</a></code><a href='#impl-Parse-35' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#537-545' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lit.rs.html#538-544' 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.LitFloat.html" title="struct syn::LitFloat">LitFloat</a></code><a href='#impl-Parse-36' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#557-565' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lit.rs.html#558-564' 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.LitInt.html" title="struct syn::LitInt">LitInt</a></code><a href='#impl-Parse-37' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#547-555' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lit.rs.html#548-554' 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.LitStr.html" title="struct syn::LitStr">LitStr</a></code><a href='#impl-Parse-38' class='anchor'></a><a class='srclink' href='../../src/syn/lit.rs.html#507-515' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/lit.rs.html#508-514' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-39' 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-39' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/mac.rs.html#200-212' 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.MetaList.html" title="struct syn::MetaList">MetaList</a></code><a href='#impl-Parse-40' class='anchor'></a><a class='srclink' href='../../src/syn/attr.rs.html#587-592' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/attr.rs.html#588-591' 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.MetaNameValue.html" title="struct syn::MetaNameValue">MetaNameValue</a></code><a href='#impl-Parse-41' class='anchor'></a><a class='srclink' href='../../src/syn/attr.rs.html#594-599' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/attr.rs.html#595-598' 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.ParenthesizedGenericArguments.html" title="struct syn::ParenthesizedGenericArguments">ParenthesizedGenericArguments</a></code><a href='#impl-Parse-42' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/path.rs.html#276-283' 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.Path.html" title="struct syn::Path">Path</a></code><a href='#impl-Parse-43' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/path.rs.html#213-215' 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.PathSegment.html" title="struct syn::PathSegment">PathSegment</a></code><a href='#impl-Parse-44' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/path.rs.html#287-289' 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.TraitBound.html" title="struct syn::TraitBound">TraitBound</a></code><a href='#impl-Parse-45' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#705-725' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#706-724' 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.TypeArray.html" title="struct syn::TypeArray">TypeArray</a></code><a href='#impl-Parse-46' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#515-525' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#516-524' 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.TypeBareFn.html" title="struct syn::TypeBareFn">TypeBareFn</a></code><a href='#impl-Parse-47' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#561-593' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#562-592' 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.TypeGroup.html" title="struct syn::TypeGroup">TypeGroup</a></code><a href='#impl-Parse-48' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#741-749' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#742-748' 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.TypeImplTrait.html" title="struct syn::TypeImplTrait">TypeImplTrait</a></code><a href='#impl-Parse-49' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#720-739' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#721-738' 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.TypeInfer.html" title="struct syn::TypeInfer">TypeInfer</a></code><a href='#impl-Parse-50' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#603-609' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#604-608' 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.TypeMacro.html" title="struct syn::TypeMacro">TypeMacro</a></code><a href='#impl-Parse-51' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#621-627' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#622-626' 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.TypeNever.html" title="struct syn::TypeNever">TypeNever</a></code><a href='#impl-Parse-52' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#595-601' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#596-600' 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.TypeParam.html" title="struct syn::TypeParam">TypeParam</a></code><a href='#impl-Parse-53' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#630-685' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#631-684' 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.TypeParen.html" title="struct syn::TypeParen">TypeParen</a></code><a href='#impl-Parse-54' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#751-755' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#752-754' 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.TypePath.html" title="struct syn::TypePath">TypePath</a></code><a href='#impl-Parse-55' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#629-646' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#630-645' 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.TypePtr.html" title="struct syn::TypePtr">TypePtr</a></code><a href='#impl-Parse-56' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#527-547' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#528-546' 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.TypeReference.html" title="struct syn::TypeReference">TypeReference</a></code><a href='#impl-Parse-57' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#549-559' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#550-558' 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.TypeSlice.html" title="struct syn::TypeSlice">TypeSlice</a></code><a href='#impl-Parse-58' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#505-513' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#506-512' 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.TypeTraitObject.html" title="struct syn::TypeTraitObject">TypeTraitObject</a></code><a href='#impl-Parse-59' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#670-674' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#671-673' 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.TypeTuple.html" title="struct syn::TypeTuple">TypeTuple</a></code><a href='#impl-Parse-60' class='anchor'></a><a class='srclink' href='../../src/syn/ty.rs.html#611-619' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/ty.rs.html#612-618' 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.Variant.html" title="struct syn::Variant">Variant</a></code><a href='#impl-Parse-61' class='anchor'></a><a class='srclink' href='../../src/syn/data.rs.html#183-208' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/data.rs.html#184-207' 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.WhereClause.html" title="struct syn::WhereClause">WhereClause</a></code><a href='#impl-Parse-62' class='anchor'></a><a class='srclink' href='../../src/syn/generics.rs.html#760-788' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/generics.rs.html#761-787' 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/token/struct.Abstract.html" title="struct syn::token::Abstract">Abstract</a></code><a href='#impl-Parse-63' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Add.html" title="struct syn::token::Add">Add</a></code><a href='#impl-Parse-64' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.AddEq.html" title="struct syn::token::AddEq">AddEq</a></code><a href='#impl-Parse-65' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.And.html" title="struct syn::token::And">And</a></code><a href='#impl-Parse-66' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.AndAnd.html" title="struct syn::token::AndAnd">AndAnd</a></code><a href='#impl-Parse-67' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.AndEq.html" title="struct syn::token::AndEq">AndEq</a></code><a href='#impl-Parse-68' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.As.html" title="struct syn::token::As">As</a></code><a href='#impl-Parse-69' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Async.html" title="struct syn::token::Async">Async</a></code><a href='#impl-Parse-70' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.At.html" title="struct syn::token::At">At</a></code><a href='#impl-Parse-71' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Auto.html" title="struct syn::token::Auto">Auto</a></code><a href='#impl-Parse-72' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Bang.html" title="struct syn::token::Bang">Bang</a></code><a href='#impl-Parse-73' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Become.html" title="struct syn::token::Become">Become</a></code><a href='#impl-Parse-74' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-75' 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-75' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Break.html" title="struct syn::token::Break">Break</a></code><a href='#impl-Parse-76' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Caret.html" title="struct syn::token::Caret">Caret</a></code><a href='#impl-Parse-77' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.CaretEq.html" title="struct syn::token::CaretEq">CaretEq</a></code><a href='#impl-Parse-78' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Colon.html" title="struct syn::token::Colon">Colon</a></code><a href='#impl-Parse-79' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Colon2.html" title="struct syn::token::Colon2">Colon2</a></code><a href='#impl-Parse-80' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Comma.html" title="struct syn::token::Comma">Comma</a></code><a href='#impl-Parse-81' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Const.html" title="struct syn::token::Const">Const</a></code><a href='#impl-Parse-82' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Continue.html" title="struct syn::token::Continue">Continue</a></code><a href='#impl-Parse-83' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Crate.html" title="struct syn::token::Crate">Crate</a></code><a href='#impl-Parse-84' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Default.html" title="struct syn::token::Default">Default</a></code><a href='#impl-Parse-85' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Div.html" title="struct syn::token::Div">Div</a></code><a href='#impl-Parse-86' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.DivEq.html" title="struct syn::token::DivEq">DivEq</a></code><a href='#impl-Parse-87' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Do.html" title="struct syn::token::Do">Do</a></code><a href='#impl-Parse-88' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Dollar.html" title="struct syn::token::Dollar">Dollar</a></code><a href='#impl-Parse-89' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Dot.html" title="struct syn::token::Dot">Dot</a></code><a href='#impl-Parse-90' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Dot2.html" title="struct syn::token::Dot2">Dot2</a></code><a href='#impl-Parse-91' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Dot3.html" title="struct syn::token::Dot3">Dot3</a></code><a href='#impl-Parse-92' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.DotDotEq.html" title="struct syn::token::DotDotEq">DotDotEq</a></code><a href='#impl-Parse-93' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Dyn.html" title="struct syn::token::Dyn">Dyn</a></code><a href='#impl-Parse-94' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Else.html" title="struct syn::token::Else">Else</a></code><a href='#impl-Parse-95' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Enum.html" title="struct syn::token::Enum">Enum</a></code><a href='#impl-Parse-96' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Eq.html" title="struct syn::token::Eq">Eq</a></code><a href='#impl-Parse-97' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.EqEq.html" title="struct syn::token::EqEq">EqEq</a></code><a href='#impl-Parse-98' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Existential.html" title="struct syn::token::Existential">Existential</a></code><a href='#impl-Parse-99' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Extern.html" title="struct syn::token::Extern">Extern</a></code><a href='#impl-Parse-100' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.FatArrow.html" title="struct syn::token::FatArrow">FatArrow</a></code><a href='#impl-Parse-101' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Final.html" title="struct syn::token::Final">Final</a></code><a href='#impl-Parse-102' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Fn.html" title="struct syn::token::Fn">Fn</a></code><a href='#impl-Parse-103' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.For.html" title="struct syn::token::For">For</a></code><a href='#impl-Parse-104' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Ge.html" title="struct syn::token::Ge">Ge</a></code><a href='#impl-Parse-105' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Gt.html" title="struct syn::token::Gt">Gt</a></code><a href='#impl-Parse-106' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.If.html" title="struct syn::token::If">If</a></code><a href='#impl-Parse-107' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Impl.html" title="struct syn::token::Impl">Impl</a></code><a href='#impl-Parse-108' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.In.html" title="struct syn::token::In">In</a></code><a href='#impl-Parse-109' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.LArrow.html" title="struct syn::token::LArrow">LArrow</a></code><a href='#impl-Parse-110' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Le.html" title="struct syn::token::Le">Le</a></code><a href='#impl-Parse-111' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Let.html" title="struct syn::token::Let">Let</a></code><a href='#impl-Parse-112' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-113' 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-113' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Lt.html" title="struct syn::token::Lt">Lt</a></code><a href='#impl-Parse-114' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-115' 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-115' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Match.html" title="struct syn::token::Match">Match</a></code><a href='#impl-Parse-116' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Mod.html" title="struct syn::token::Mod">Mod</a></code><a href='#impl-Parse-117' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Move.html" title="struct syn::token::Move">Move</a></code><a href='#impl-Parse-118' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.MulEq.html" title="struct syn::token::MulEq">MulEq</a></code><a href='#impl-Parse-119' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Mut.html" title="struct syn::token::Mut">Mut</a></code><a href='#impl-Parse-120' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Ne.html" title="struct syn::token::Ne">Ne</a></code><a href='#impl-Parse-121' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Or.html" title="struct syn::token::Or">Or</a></code><a href='#impl-Parse-122' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.OrEq.html" title="struct syn::token::OrEq">OrEq</a></code><a href='#impl-Parse-123' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.OrOr.html" title="struct syn::token::OrOr">OrOr</a></code><a href='#impl-Parse-124' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Override.html" title="struct syn::token::Override">Override</a></code><a href='#impl-Parse-125' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Pound.html" title="struct syn::token::Pound">Pound</a></code><a href='#impl-Parse-126' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Priv.html" title="struct syn::token::Priv">Priv</a></code><a href='#impl-Parse-127' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Pub.html" title="struct syn::token::Pub">Pub</a></code><a href='#impl-Parse-128' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Question.html" title="struct syn::token::Question">Question</a></code><a href='#impl-Parse-129' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.RArrow.html" title="struct syn::token::RArrow">RArrow</a></code><a href='#impl-Parse-130' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Ref.html" title="struct syn::token::Ref">Ref</a></code><a href='#impl-Parse-131' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Rem.html" title="struct syn::token::Rem">Rem</a></code><a href='#impl-Parse-132' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.RemEq.html" title="struct syn::token::RemEq">RemEq</a></code><a href='#impl-Parse-133' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Return.html" title="struct syn::token::Return">Return</a></code><a href='#impl-Parse-134' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.SelfType.html" title="struct syn::token::SelfType">SelfType</a></code><a href='#impl-Parse-135' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.SelfValue.html" title="struct syn::token::SelfValue">SelfValue</a></code><a href='#impl-Parse-136' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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/token/struct.Semi.html" title="struct syn::token::Semi">Semi</a></code><a href='#impl-Parse-137' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Shl.html" title="struct syn::token::Shl">Shl</a></code><a href='#impl-Parse-138' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.ShlEq.html" title="struct syn::token::ShlEq">ShlEq</a></code><a href='#impl-Parse-139' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.Shr.html" title="struct syn::token::Shr">Shr</a></code><a href='#impl-Parse-140' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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/token/struct.ShrEq.html" title="struct syn::token::ShrEq">ShrEq</a></code><a href='#impl-Parse-141' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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.Star.html" title="struct syn::token::Star">Star</a></code><a href='#impl-Parse-142' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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.Static.html" title="struct syn::token::Static">Static</a></code><a href='#impl-Parse-143' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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.Struct.html" title="struct syn::token::Struct">Struct</a></code><a href='#impl-Parse-144' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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.Sub.html" title="struct syn::token::Sub">Sub</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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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.SubEq.html" title="struct syn::token::SubEq">SubEq</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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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.Super.html" title="struct syn::token::Super">Super</a></code><a href='#impl-Parse-147' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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.Tilde.html" title="struct syn::token::Tilde">Tilde</a></code><a href='#impl-Parse-148' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#412-416' 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.Trait.html" title="struct syn::token::Trait">Trait</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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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.Try.html" title="struct syn::token::Try">Try</a></code><a href='#impl-Parse-150' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' title='goto source code'>[src]</a></h4></div><h3 id='impl-Parse-151' 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-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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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.Typeof.html" title="struct syn::token::Typeof">Typeof</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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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.Underscore.html" title="struct syn::token::Underscore">Underscore</a></code><a href='#impl-Parse-153' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#512-526' 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.Union.html" title="struct syn::token::Union">Union</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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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 <a class="struct" href="../../syn/token/struct.Unsafe.html" title="struct syn::token::Unsafe">Unsafe</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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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.Unsized.html" title="struct syn::token::Unsized">Unsized</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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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.Use.html" title="struct syn::token::Use">Use</a></code><a href='#impl-Parse-157' 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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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.Virtual.html" title="struct syn::token::Virtual">Virtual</a></code><a href='#impl-Parse-158' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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.Where.html" title="struct syn::token::Where">Where</a></code><a href='#impl-Parse-159' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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.While.html" title="struct syn::token::While">While</a></code><a href='#impl-Parse-160' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></code><a class='srclink' href='../../src/syn/token.rs.html#294-298' 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.Yield.html" title="struct syn::token::Yield">Yield</a></code><a href='#impl-Parse-161' 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-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>) -> <a class="type" href="../../syn/parse/type.Result.html" title="type syn::parse::Result">Result</a><Self></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>⏎</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> |