10 lines
212 KiB
HTML
10 lines
212 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="../../light.css" id="themeStyle"><link rel="stylesheet" type="text/css" href="../../dark.css" disabled ><link rel="stylesheet" type="text/css" href="../../ayu.css" disabled ><script id="default-settings"></script><script src="../../storage.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="icon" type="image/svg+xml" href="../../favicon.svg">
|
||
<link rel="alternate icon" type="image/png" href="../../favicon-16x16.png">
|
||
<link rel="alternate icon" type="image/png" href="../../favicon-32x32.png"><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 rust-logo'><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%3CLabel%3E">Option<Label></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!" aria-haspopup="menu"><img src="../../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices" role="menu"></div></div><script src="../../theme.js"></script><nav class="sub"><form class="search-form"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" disabled autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"></div><span class="help-button">?</span>
|
||
<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#218-220" 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>
|
||
<p>Refer to the <a href="../../syn/parse/index.html">module documentation</a> for details about implementing and using
|
||
the <code>Parse</code> trait.</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>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%3CLabel%3E" class="impl"><code class="in-band">impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="../../syn/struct.Label.html" title="struct syn::Label">Label</a>></code><a href="#impl-Parse-for-Option%3CLabel%3E" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2349-2357" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse" class="method hidden"><code>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/expr.rs.html#2350-2356" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-for-Option%3CBoundLifetimes%3E" class="impl"><code class="in-band">impl <a class="trait" href="../../syn/parse/trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<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#745-753" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-1" class="method hidden"><code>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#746-752" 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#916-924" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-2" class="method hidden"><code>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#917-923" 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#1018-1026" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-3" class="method hidden"><code>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#1019-1025" 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#1063-1067" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-4" class="method hidden"><code>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#1064-1066" 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#1070-1078" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-5" class="method hidden"><code>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#1071-1077" 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#1081-1085" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-6" class="method hidden"><code>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#1082-1084" 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#1088-1095" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-7" class="method hidden"><code>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#1089-1094" 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#1098-1111" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-8" class="method hidden"><code>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#1099-1110" 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#1114-1121" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-9" class="method hidden"><code>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#1115-1120" 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#1124-1131" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-10" class="method hidden"><code>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#1125-1130" title="goto source code">[src]</a></h4></div><span class="loading-content">Loading content...</span><h2 id="implementors" class="small-section-header">Implementors<a href="#implementors" class="anchor"></a></h2><div class="item-list" id="implementors-list"><h3 id="impl-Parse" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.BinOp.html" title="enum syn::BinOp">BinOp</a></code><a href="#impl-Parse" class="anchor"></a><a class="srclink" href="../../src/syn/op.rs.html#131-163" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-11" class="method hidden"><code>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#138-162" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-1" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.Expr.html" title="enum syn::Expr">Expr</a></code><a href="#impl-Parse-1" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1108-1112" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-12" class="method hidden"><code>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#1109-1111" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-2" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.FnArg.html" title="enum syn::FnArg">FnArg</a></code><a href="#impl-Parse-2" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1447-1464" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-13" class="method hidden"><code>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/item.rs.html#1448-1463" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-3" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.ForeignItem.html" title="enum syn::ForeignItem">ForeignItem</a></code><a href="#impl-Parse-3" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1628-1705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-14" class="method hidden"><code>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/item.rs.html#1629-1704" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-4" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.GenericArgument.html" title="enum syn::GenericArgument">GenericArgument</a></code><a href="#impl-Parse-4" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#229-258" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-15" class="method hidden"><code>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/path.rs.html#230-257" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-5" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.GenericParam.html" title="enum syn::GenericParam">GenericParam</a></code><a href="#impl-Parse-5" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#658-682" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-16" class="method hidden"><code>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/generics.rs.html#659-681" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-6" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.ImplItem.html" title="enum syn::ImplItem">ImplItem</a></code><a href="#impl-Parse-6" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2437-2515" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-17" class="method hidden"><code>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/item.rs.html#2438-2514" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-7" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.Item.html" title="enum syn::Item">Item</a></code><a href="#impl-Parse-7" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#895-1061" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-18" class="method hidden"><code>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/item.rs.html#896-1060" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-8" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.Lit.html" title="enum syn::Lit">Lit</a></code><a href="#impl-Parse-8" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#701-730" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-19" class="method hidden"><code>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/lit.rs.html#702-729" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-9" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.Member.html" title="enum syn::Member">Member</a></code><a href="#impl-Parse-9" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2585-2595" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-20" class="method hidden"><code>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/expr.rs.html#2586-2594" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-10" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.Meta.html" title="enum syn::Meta">Meta</a></code><a href="#impl-Parse-10" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#566-571" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-21" class="method hidden"><code>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/attr.rs.html#567-570" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-11" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.NestedMeta.html" title="enum syn::NestedMeta">NestedMeta</a></code><a href="#impl-Parse-11" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#590-602" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-22" class="method hidden"><code>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/attr.rs.html#591-601" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-12" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.Pat.html" title="enum syn::Pat">Pat</a></code><a href="#impl-Parse-12" class="anchor"></a><a class="srclink" href="../../src/syn/pat.rs.html#299-350" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-23" class="method hidden"><code>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/pat.rs.html#300-349" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-13" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.RangeLimits.html" title="enum syn::RangeLimits">RangeLimits</a></code><a href="#impl-Parse-13" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2554-2568" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-24" class="method hidden"><code>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/expr.rs.html#2555-2567" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-14" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.ReturnType.html" title="enum syn::ReturnType">ReturnType</a></code><a href="#impl-Parse-14" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#825-829" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-25" class="method hidden"><code>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/ty.rs.html#826-828" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-15" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.Stmt.html" title="enum syn::Stmt">Stmt</a></code><a href="#impl-Parse-15" class="anchor"></a><a class="srclink" href="../../src/syn/stmt.rs.html#148-152" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-26" class="method hidden"><code>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/stmt.rs.html#149-151" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-16" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.TraitBoundModifier.html" title="enum syn::TraitBoundModifier">TraitBoundModifier</a></code><a href="#impl-Parse-16" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#850-858" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-27" class="method hidden"><code>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/generics.rs.html#851-857" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-17" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.TraitItem.html" title="enum syn::TraitItem">TraitItem</a></code><a href="#impl-Parse-17" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2128-2182" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-28" class="method hidden"><code>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/item.rs.html#2129-2181" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-18" class="impl"><code class="in-band">impl Parse for syn::<a class="enum" href="../../syn/enum.Type.html" title="enum syn::Type">Type</a></code><a href="#impl-Parse-18" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#324-329" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-29" class="method hidden"><code>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/ty.rs.html#325-328" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-19" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.TypeParamBound.html" title="enum syn::TypeParamBound">TypeParamBound</a></code><a href="#impl-Parse-19" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#810-826" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-30" class="method hidden"><code>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#811-825" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-20" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.UnOp.html" title="enum syn::UnOp">UnOp</a></code><a href="#impl-Parse-20" class="anchor"></a><a class="srclink" href="../../src/syn/op.rs.html#166-179" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-31" class="method hidden"><code>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/op.rs.html#167-178" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-21" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.UseTree.html" title="enum syn::UseTree">UseTree</a></code><a href="#impl-Parse-21" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1235-1281" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-32" class="method hidden"><code>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><<a class="enum" href="../../syn/enum.UseTree.html" title="enum syn::UseTree">UseTree</a>></code><a class="srclink" href="../../src/syn/item.rs.html#1236-1280" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-22" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.Visibility.html" title="enum syn::Visibility">Visibility</a></code><a href="#impl-Parse-22" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#325-346" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-33" class="method hidden"><code>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/data.rs.html#326-345" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-23" class="impl"><code class="in-band">impl Parse for <a class="enum" href="../../syn/enum.WherePredicate.html" title="enum syn::WherePredicate">WherePredicate</a></code><a href="#impl-Parse-23" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#927-986" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-34" class="method hidden"><code>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/generics.rs.html#928-985" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-24" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/parse/struct.Nothing.html" title="struct syn::parse::Nothing">Nothing</a></code><a href="#impl-Parse-24" class="anchor"></a><a class="srclink" href="../../src/syn/parse.rs.html#1283-1287" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-35" class="method hidden"><code>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/parse.rs.html#1284-1286" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-25" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Abi.html" title="struct syn::Abi">Abi</a></code><a href="#impl-Parse-25" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#1008-1015" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-36" class="method hidden"><code>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/ty.rs.html#1009-1014" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-26" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.AngleBracketedGenericArguments.html" title="struct syn::AngleBracketedGenericArguments">AngleBracketedGenericArguments</a></code><a href="#impl-Parse-26" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#261-285" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-37" class="method hidden"><code>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/path.rs.html#262-284" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-27" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Arm.html" title="struct syn::Arm">Arm</a></code><a href="#impl-Parse-27" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2599-2629" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-38" class="method hidden"><code>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><<a class="struct" href="../../syn/struct.Arm.html" title="struct syn::Arm">Arm</a>></code><a class="srclink" href="../../src/syn/expr.rs.html#2600-2628" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-28" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.BareFnArg.html" title="struct syn::BareFnArg">BareFnArg</a></code><a href="#impl-Parse-28" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#936-941" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-39" class="method hidden"><code>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/ty.rs.html#937-940" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-29" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Binding.html" title="struct syn::Binding">Binding</a></code><a href="#impl-Parse-29" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#333-341" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-40" class="method hidden"><code>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/path.rs.html#334-340" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-30" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Block.html" title="struct syn::Block">Block</a></code><a href="#impl-Parse-30" class="anchor"></a><a class="srclink" href="../../src/syn/stmt.rs.html#137-145" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-41" class="method hidden"><code>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/stmt.rs.html#138-144" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-31" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a></code><a href="#impl-Parse-31" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#723-742" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-42" class="method hidden"><code>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/generics.rs.html#724-741" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-32" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ConstParam.html" title="struct syn::ConstParam">ConstParam</a></code><a href="#impl-Parse-32" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#861-882" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-43" class="method hidden"><code>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/generics.rs.html#862-881" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-33" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Constraint.html" title="struct syn::Constraint">Constraint</a></code><a href="#impl-Parse-33" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#345-368" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-44" class="method hidden"><code>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/path.rs.html#346-367" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-34" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.DeriveInput.html" title="struct syn::DeriveInput">DeriveInput</a></code><a href="#impl-Parse-34" class="anchor"></a><a class="srclink" href="../../src/syn/derive.rs.html#96-162" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-45" class="method hidden"><code>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/derive.rs.html#97-161" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-35" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprArray.html" title="struct syn::ExprArray">ExprArray</a></code><a href="#impl-Parse-35" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-46" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-36" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprAssign.html" title="struct syn::ExprAssign">ExprAssign</a></code><a href="#impl-Parse-36" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-47" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-37" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprAssignOp.html" title="struct syn::ExprAssignOp">ExprAssignOp</a></code><a href="#impl-Parse-37" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-48" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-38" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprAsync.html" title="struct syn::ExprAsync">ExprAsync</a></code><a href="#impl-Parse-38" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-49" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-39" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprBinary.html" title="struct syn::ExprBinary">ExprBinary</a></code><a href="#impl-Parse-39" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-50" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-40" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprBlock.html" title="struct syn::ExprBlock">ExprBlock</a></code><a href="#impl-Parse-40" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-51" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-41" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprBox.html" title="struct syn::ExprBox">ExprBox</a></code><a href="#impl-Parse-41" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-52" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-42" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprBreak.html" title="struct syn::ExprBreak">ExprBreak</a></code><a href="#impl-Parse-42" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-53" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-43" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprCall.html" title="struct syn::ExprCall">ExprCall</a></code><a href="#impl-Parse-43" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-54" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-44" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprCast.html" title="struct syn::ExprCast">ExprCast</a></code><a href="#impl-Parse-44" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-55" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-45" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprClosure.html" title="struct syn::ExprClosure">ExprClosure</a></code><a href="#impl-Parse-45" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-56" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-46" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprContinue.html" title="struct syn::ExprContinue">ExprContinue</a></code><a href="#impl-Parse-46" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-57" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-47" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprField.html" title="struct syn::ExprField">ExprField</a></code><a href="#impl-Parse-47" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-58" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-48" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprForLoop.html" title="struct syn::ExprForLoop">ExprForLoop</a></code><a href="#impl-Parse-48" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2051-2077" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-59" class="method hidden"><code>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/expr.rs.html#2052-2076" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-49" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprIf.html" title="struct syn::ExprIf">ExprIf</a></code><a href="#impl-Parse-49" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2010-2027" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-60" class="method hidden"><code>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/expr.rs.html#2011-2026" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-50" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprIndex.html" title="struct syn::ExprIndex">ExprIndex</a></code><a href="#impl-Parse-50" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-61" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-51" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprLet.html" title="struct syn::ExprLet">ExprLet</a></code><a href="#impl-Parse-51" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-62" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-52" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprLit.html" title="struct syn::ExprLit">ExprLit</a></code><a href="#impl-Parse-52" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#1953-1960" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-63" class="method hidden"><code>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/expr.rs.html#1954-1959" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-53" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprLoop.html" title="struct syn::ExprLoop">ExprLoop</a></code><a href="#impl-Parse-53" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2081-2099" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-64" class="method hidden"><code>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/expr.rs.html#2082-2098" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-54" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprMacro.html" title="struct syn::ExprMacro">ExprMacro</a></code><a href="#impl-Parse-54" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-65" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-55" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprMatch.html" title="struct syn::ExprMatch">ExprMatch</a></code><a href="#impl-Parse-55" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2103-2126" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-66" class="method hidden"><code>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/expr.rs.html#2104-2125" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-56" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprMethodCall.html" title="struct syn::ExprMethodCall">ExprMethodCall</a></code><a href="#impl-Parse-56" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-67" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-57" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprParen.html" title="struct syn::ExprParen">ExprParen</a></code><a href="#impl-Parse-57" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-68" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-58" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprPath.html" title="struct syn::ExprPath">ExprPath</a></code><a href="#impl-Parse-58" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2571-2582" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-69" class="method hidden"><code>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/expr.rs.html#2572-2581" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-59" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprRange.html" title="struct syn::ExprRange">ExprRange</a></code><a href="#impl-Parse-59" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-70" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-60" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprReference.html" title="struct syn::ExprReference">ExprReference</a></code><a href="#impl-Parse-60" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-71" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-61" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprRepeat.html" title="struct syn::ExprRepeat">ExprRepeat</a></code><a href="#impl-Parse-61" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-72" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-62" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprReturn.html" title="struct syn::ExprReturn">ExprReturn</a></code><a href="#impl-Parse-62" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-73" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-63" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprStruct.html" title="struct syn::ExprStruct">ExprStruct</a></code><a href="#impl-Parse-63" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-74" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-64" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprTry.html" title="struct syn::ExprTry">ExprTry</a></code><a href="#impl-Parse-64" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-75" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-65" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprTryBlock.html" title="struct syn::ExprTryBlock">ExprTryBlock</a></code><a href="#impl-Parse-65" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-76" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-66" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprTuple.html" title="struct syn::ExprTuple">ExprTuple</a></code><a href="#impl-Parse-66" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-77" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-67" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprType.html" title="struct syn::ExprType">ExprType</a></code><a href="#impl-Parse-67" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-78" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-68" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprUnary.html" title="struct syn::ExprUnary">ExprUnary</a></code><a href="#impl-Parse-68" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-79" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-69" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprUnsafe.html" title="struct syn::ExprUnsafe">ExprUnsafe</a></code><a href="#impl-Parse-69" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-80" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-70" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprWhile.html" title="struct syn::ExprWhile">ExprWhile</a></code><a href="#impl-Parse-70" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2314-2334" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-81" class="method hidden"><code>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/expr.rs.html#2315-2333" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-71" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ExprYield.html" title="struct syn::ExprYield">ExprYield</a></code><a href="#impl-Parse-71" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2153-2184" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-82" class="method hidden"><code>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/expr.rs.html#2153-2184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-72" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.FieldValue.html" title="struct syn::FieldValue">FieldValue</a></code><a href="#impl-Parse-72" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2412-2438" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-83" class="method hidden"><code>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/expr.rs.html#2413-2437" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-73" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.FieldsNamed.html" title="struct syn::FieldsNamed">FieldsNamed</a></code><a href="#impl-Parse-73" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#277-285" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-84" class="method hidden"><code>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/data.rs.html#278-284" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-74" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.FieldsUnnamed.html" title="struct syn::FieldsUnnamed">FieldsUnnamed</a></code><a href="#impl-Parse-74" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#288-296" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-85" class="method hidden"><code>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/data.rs.html#289-295" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-75" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.File.html" title="struct syn::File">File</a></code><a href="#impl-Parse-75" class="anchor"></a><a class="srclink" href="../../src/syn/file.rs.html#94-108" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-86" class="method hidden"><code>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/file.rs.html#95-107" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-76" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ForeignItemFn.html" title="struct syn::ForeignItemFn">ForeignItemFn</a></code><a href="#impl-Parse-76" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1708-1721" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-87" class="method hidden"><code>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/item.rs.html#1709-1720" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-77" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ForeignItemMacro.html" title="struct syn::ForeignItemMacro">ForeignItemMacro</a></code><a href="#impl-Parse-77" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1784-1799" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-88" class="method hidden"><code>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/item.rs.html#1785-1798" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-78" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ForeignItemStatic.html" title="struct syn::ForeignItemStatic">ForeignItemStatic</a></code><a href="#impl-Parse-78" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1724-1737" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-89" class="method hidden"><code>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/item.rs.html#1725-1736" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-79" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ForeignItemType.html" title="struct syn::ForeignItemType">ForeignItemType</a></code><a href="#impl-Parse-79" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1740-1750" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-90" class="method hidden"><code>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/item.rs.html#1741-1749" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-80" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Generics.html" title="struct syn::Generics">Generics</a></code><a href="#impl-Parse-80" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#604-655" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-91" class="method hidden"><code>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/generics.rs.html#605-654" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-81" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Ident.html" title="struct syn::Ident">Ident</a></code><a href="#impl-Parse-81" class="anchor"></a><a class="srclink" href="../../src/syn/ident.rs.html#40-51" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-92" class="method hidden"><code>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/ident.rs.html#41-50" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-82" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ImplItemConst.html" title="struct syn::ImplItemConst">ImplItemConst</a></code><a href="#impl-Parse-82" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2518-2540" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-93" class="method hidden"><code>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/item.rs.html#2519-2539" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-83" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ImplItemMacro.html" title="struct syn::ImplItemMacro">ImplItemMacro</a></code><a href="#impl-Parse-83" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2635-2650" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-94" class="method hidden"><code>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/item.rs.html#2636-2649" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-84" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ImplItemMethod.html" title="struct syn::ImplItemMethod">ImplItemMethod</a></code><a href="#impl-Parse-84" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2543-2580" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-95" class="method hidden"><code>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/item.rs.html#2544-2579" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-85" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ImplItemType.html" title="struct syn::ImplItemType">ImplItemType</a></code><a href="#impl-Parse-85" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2583-2601" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-96" class="method hidden"><code>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/item.rs.html#2584-2600" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-86" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Index.html" title="struct syn::Index">Index</a></code><a href="#impl-Parse-86" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2632-2647" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-97" class="method hidden"><code>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/expr.rs.html#2633-2646" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-87" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemConst.html" title="struct syn::ItemConst">ItemConst</a></code><a href="#impl-Parse-87" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1302-1323" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-98" class="method hidden"><code>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/item.rs.html#1303-1322" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-88" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemEnum.html" title="struct syn::ItemEnum">ItemEnum</a></code><a href="#impl-Parse-88" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1923-1944" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-99" class="method hidden"><code>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/item.rs.html#1924-1943" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-89" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemExternCrate.html" title="struct syn::ItemExternCrate">ItemExternCrate</a></code><a href="#impl-Parse-89" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1188-1218" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-100" class="method hidden"><code>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/item.rs.html#1189-1217" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-90" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemFn.html" title="struct syn::ItemFn">ItemFn</a></code><a href="#impl-Parse-90" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1418-1425" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-101" class="method hidden"><code>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/item.rs.html#1419-1424" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-91" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemForeignMod.html" title="struct syn::ItemForeignMod">ItemForeignMod</a></code><a href="#impl-Parse-91" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1605-1625" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-102" class="method hidden"><code>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/item.rs.html#1606-1624" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-92" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemImpl.html" title="struct syn::ItemImpl">ItemImpl</a></code><a href="#impl-Parse-92" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2334-2339" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-103" class="method hidden"><code>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/item.rs.html#2335-2338" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-93" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemMacro2.html" title="struct syn::ItemMacro2">ItemMacro2</a></code><a href="#impl-Parse-93" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1147-1185" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-104" class="method hidden"><code>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/item.rs.html#1148-1184" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-94" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemMacro.html" title="struct syn::ItemMacro">ItemMacro</a></code><a href="#impl-Parse-94" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1120-1144" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-105" class="method hidden"><code>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/item.rs.html#1121-1143" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-95" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemMod.html" title="struct syn::ItemMod">ItemMod</a></code><a href="#impl-Parse-95" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1563-1602" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-106" class="method hidden"><code>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/item.rs.html#1564-1601" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-96" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemStatic.html" title="struct syn::ItemStatic">ItemStatic</a></code><a href="#impl-Parse-96" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1284-1299" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-107" class="method hidden"><code>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/item.rs.html#1285-1298" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-97" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemStruct.html" title="struct syn::ItemStruct">ItemStruct</a></code><a href="#impl-Parse-97" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1899-1920" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-108" class="method hidden"><code>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/item.rs.html#1900-1919" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-98" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemTrait.html" title="struct syn::ItemTrait">ItemTrait</a></code><a href="#impl-Parse-98" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1998-2018" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-109" class="method hidden"><code>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/item.rs.html#1999-2017" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-99" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemTraitAlias.html" title="struct syn::ItemTraitAlias">ItemTraitAlias</a></code><a href="#impl-Parse-99" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2072-2077" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-110" class="method hidden"><code>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/item.rs.html#2073-2076" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-100" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemType.html" title="struct syn::ItemType">ItemType</a></code><a href="#impl-Parse-100" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1802-1819" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-111" class="method hidden"><code>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/item.rs.html#1803-1818" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-101" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemUnion.html" title="struct syn::ItemUnion">ItemUnion</a></code><a href="#impl-Parse-101" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1947-1967" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-112" class="method hidden"><code>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/item.rs.html#1948-1966" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-102" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ItemUse.html" title="struct syn::ItemUse">ItemUse</a></code><a href="#impl-Parse-102" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1221-1232" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-113" class="method hidden"><code>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/item.rs.html#1222-1231" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-103" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Label.html" title="struct syn::Label">Label</a></code><a href="#impl-Parse-103" class="anchor"></a><a class="srclink" href="../../src/syn/expr.rs.html#2338-2345" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-114" class="method hidden"><code>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/expr.rs.html#2339-2344" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-104" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Lifetime.html" title="struct syn::Lifetime">Lifetime</a></code><a href="#impl-Parse-104" class="anchor"></a><a class="srclink" href="../../src/syn/lifetime.rs.html#117-125" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-115" class="method hidden"><code>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/lifetime.rs.html#118-124" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-105" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.LifetimeDef.html" title="struct syn::LifetimeDef">LifetimeDef</a></code><a href="#impl-Parse-105" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#685-720" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-116" class="method hidden"><code>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/generics.rs.html#686-719" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-106" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.LitBool.html" title="struct syn::LitBool">LitBool</a></code><a href="#impl-Parse-106" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#839-847" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-117" class="method hidden"><code>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/lit.rs.html#840-846" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-107" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.LitByte.html" title="struct syn::LitByte">LitByte</a></code><a href="#impl-Parse-107" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#795-803" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-118" class="method hidden"><code>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/lit.rs.html#796-802" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-108" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.LitByteStr.html" title="struct syn::LitByteStr">LitByteStr</a></code><a href="#impl-Parse-108" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#784-792" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-119" class="method hidden"><code>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/lit.rs.html#785-791" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-109" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.LitChar.html" title="struct syn::LitChar">LitChar</a></code><a href="#impl-Parse-109" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#806-814" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-120" class="method hidden"><code>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/lit.rs.html#807-813" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-110" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.LitFloat.html" title="struct syn::LitFloat">LitFloat</a></code><a href="#impl-Parse-110" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#828-836" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-121" class="method hidden"><code>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/lit.rs.html#829-835" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-111" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.LitInt.html" title="struct syn::LitInt">LitInt</a></code><a href="#impl-Parse-111" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#817-825" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-122" class="method hidden"><code>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/lit.rs.html#818-824" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-112" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.LitStr.html" title="struct syn::LitStr">LitStr</a></code><a href="#impl-Parse-112" class="anchor"></a><a class="srclink" href="../../src/syn/lit.rs.html#773-781" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-123" class="method hidden"><code>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/lit.rs.html#774-780" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-113" class="impl"><code class="in-band">impl Parse for syn::<a class="struct" href="../../syn/struct.Macro.html" title="struct syn::Macro">Macro</a></code><a href="#impl-Parse-113" class="anchor"></a><a class="srclink" href="../../src/syn/mac.rs.html#178-192" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-124" class="method hidden"><code>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/mac.rs.html#179-191" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-114" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.MetaList.html" title="struct syn::MetaList">MetaList</a></code><a href="#impl-Parse-114" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#574-579" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-125" class="method hidden"><code>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/attr.rs.html#575-578" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-115" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.MetaNameValue.html" title="struct syn::MetaNameValue">MetaNameValue</a></code><a href="#impl-Parse-115" class="anchor"></a><a class="srclink" href="../../src/syn/attr.rs.html#582-587" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-126" class="method hidden"><code>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/attr.rs.html#583-586" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-116" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.ParenthesizedGenericArguments.html" title="struct syn::ParenthesizedGenericArguments">ParenthesizedGenericArguments</a></code><a href="#impl-Parse-116" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#288-297" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-127" class="method hidden"><code>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/path.rs.html#289-296" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-117" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Path.html" title="struct syn::Path">Path</a></code><a href="#impl-Parse-117" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#222-226" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-128" class="method hidden"><code>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/path.rs.html#223-225" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-118" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.PathSegment.html" title="struct syn::PathSegment">PathSegment</a></code><a href="#impl-Parse-118" class="anchor"></a><a class="srclink" href="../../src/syn/path.rs.html#300-304" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-129" class="method hidden"><code>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/path.rs.html#301-303" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-119" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Receiver.html" title="struct syn::Receiver">Receiver</a></code><a href="#impl-Parse-119" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1467-1482" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-130" class="method hidden"><code>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/item.rs.html#1468-1481" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-120" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Signature.html" title="struct syn::Signature">Signature</a></code><a href="#impl-Parse-120" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#1383-1415" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-131" class="method hidden"><code>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/item.rs.html#1384-1414" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-121" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TraitBound.html" title="struct syn::TraitBound">TraitBound</a></code><a href="#impl-Parse-121" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#829-847" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-132" class="method hidden"><code>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/generics.rs.html#830-846" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-122" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TraitItemConst.html" title="struct syn::TraitItemConst">TraitItemConst</a></code><a href="#impl-Parse-122" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2185-2212" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-133" class="method hidden"><code>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/item.rs.html#2186-2211" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-123" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TraitItemMacro.html" title="struct syn::TraitItemMacro">TraitItemMacro</a></code><a href="#impl-Parse-123" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2316-2331" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-134" class="method hidden"><code>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/item.rs.html#2317-2330" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-124" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TraitItemMethod.html" title="struct syn::TraitItemMethod">TraitItemMethod</a></code><a href="#impl-Parse-124" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2215-2241" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-135" class="method hidden"><code>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/item.rs.html#2216-2240" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-125" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TraitItemType.html" title="struct syn::TraitItemType">TraitItemType</a></code><a href="#impl-Parse-125" class="anchor"></a><a class="srclink" href="../../src/syn/item.rs.html#2244-2284" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-136" class="method hidden"><code>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/item.rs.html#2245-2283" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-126" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeArray.html" title="struct syn::TypeArray">TypeArray</a></code><a href="#impl-Parse-126" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#629-639" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-137" class="method hidden"><code>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/ty.rs.html#630-638" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-127" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeBareFn.html" title="struct syn::TypeBareFn">TypeBareFn</a></code><a href="#impl-Parse-127" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#678-683" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-138" class="method hidden"><code>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/ty.rs.html#679-682" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-128" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeGroup.html" title="struct syn::TypeGroup">TypeGroup</a></code><a href="#impl-Parse-128" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#907-915" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-139" class="method hidden"><code>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/ty.rs.html#908-914" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-129" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeImplTrait.html" title="struct syn::TypeImplTrait">TypeImplTrait</a></code><a href="#impl-Parse-129" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#885-904" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-140" class="method hidden"><code>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/ty.rs.html#886-903" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-130" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeInfer.html" title="struct syn::TypeInfer">TypeInfer</a></code><a href="#impl-Parse-130" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#745-751" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-141" class="method hidden"><code>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/ty.rs.html#746-750" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-131" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeMacro.html" title="struct syn::TypeMacro">TypeMacro</a></code><a href="#impl-Parse-131" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#783-789" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-142" class="method hidden"><code>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/ty.rs.html#784-788" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-132" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeNever.html" title="struct syn::TypeNever">TypeNever</a></code><a href="#impl-Parse-132" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#736-742" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-143" class="method hidden"><code>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/ty.rs.html#737-741" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-133" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeParam.html" title="struct syn::TypeParam">TypeParam</a></code><a href="#impl-Parse-133" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#756-807" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-144" class="method hidden"><code>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/generics.rs.html#757-806" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-134" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeParen.html" title="struct syn::TypeParen">TypeParen</a></code><a href="#impl-Parse-134" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#918-923" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-145" class="method hidden"><code>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/ty.rs.html#919-922" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-135" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypePath.html" title="struct syn::TypePath">TypePath</a></code><a href="#impl-Parse-135" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#792-804" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-146" class="method hidden"><code>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/ty.rs.html#793-803" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-136" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypePtr.html" title="struct syn::TypePtr">TypePtr</a></code><a href="#impl-Parse-136" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#642-662" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-147" class="method hidden"><code>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/ty.rs.html#643-661" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-137" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeReference.html" title="struct syn::TypeReference">TypeReference</a></code><a href="#impl-Parse-137" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#665-675" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-148" class="method hidden"><code>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/ty.rs.html#666-674" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-138" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeSlice.html" title="struct syn::TypeSlice">TypeSlice</a></code><a href="#impl-Parse-138" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#618-626" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-149" class="method hidden"><code>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/ty.rs.html#619-625" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-139" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeTraitObject.html" title="struct syn::TypeTraitObject">TypeTraitObject</a></code><a href="#impl-Parse-139" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#832-836" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-150" class="method hidden"><code>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/ty.rs.html#833-835" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-140" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.TypeTuple.html" title="struct syn::TypeTuple">TypeTuple</a></code><a href="#impl-Parse-140" class="anchor"></a><a class="srclink" href="../../src/syn/ty.rs.html#754-780" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-151" class="method hidden"><code>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/ty.rs.html#755-779" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-141" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/struct.Variant.html" title="struct syn::Variant">Variant</a></code><a href="#impl-Parse-141" class="anchor"></a><a class="srclink" href="../../src/syn/data.rs.html#247-274" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-152" class="method hidden"><code>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/data.rs.html#248-273" 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/struct.WhereClause.html" title="struct syn::WhereClause">WhereClause</a></code><a href="#impl-Parse-142" class="anchor"></a><a class="srclink" href="../../src/syn/generics.rs.html#885-913" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-153" class="method hidden"><code>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/generics.rs.html#886-912" 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.Abstract.html" title="struct syn::token::Abstract">Abstract</a></code><a href="#impl-Parse-143" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-154" class="method hidden"><code>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#652-705" 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.Add.html" title="struct syn::token::Add">Add</a></code><a href="#impl-Parse-144" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-155" class="method hidden"><code>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#707-754" 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.AddEq.html" title="struct syn::token::AddEq">AddEq</a></code><a href="#impl-Parse-145" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-156" class="method hidden"><code>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#707-754" 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.And.html" title="struct syn::token::And">And</a></code><a href="#impl-Parse-146" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-157" class="method hidden"><code>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#707-754" 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.AndAnd.html" title="struct syn::token::AndAnd">AndAnd</a></code><a href="#impl-Parse-147" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-158" class="method hidden"><code>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#707-754" 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.AndEq.html" title="struct syn::token::AndEq">AndEq</a></code><a href="#impl-Parse-148" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-159" class="method hidden"><code>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#707-754" 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.As.html" title="struct syn::token::As">As</a></code><a href="#impl-Parse-149" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-160" class="method hidden"><code>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#652-705" 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.Async.html" title="struct syn::token::Async">Async</a></code><a href="#impl-Parse-150" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-161" class="method hidden"><code>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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-151" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.At.html" title="struct syn::token::At">At</a></code><a href="#impl-Parse-151" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-162" class="method hidden"><code>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#707-754" 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.Auto.html" title="struct syn::token::Auto">Auto</a></code><a href="#impl-Parse-152" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-163" class="method hidden"><code>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#652-705" 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.Await.html" title="struct syn::token::Await">Await</a></code><a href="#impl-Parse-153" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-164" class="method hidden"><code>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#652-705" 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.Bang.html" title="struct syn::token::Bang">Bang</a></code><a href="#impl-Parse-154" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-165" class="method hidden"><code>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#707-754" 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.Become.html" title="struct syn::token::Become">Become</a></code><a href="#impl-Parse-155" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-166" class="method hidden"><code>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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-156" 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-156" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-167" class="method hidden"><code>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#652-705" 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.Break.html" title="struct syn::token::Break">Break</a></code><a href="#impl-Parse-157" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-168" class="method hidden"><code>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#652-705" 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.Caret.html" title="struct syn::token::Caret">Caret</a></code><a href="#impl-Parse-158" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-169" class="method hidden"><code>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#707-754" 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.CaretEq.html" title="struct syn::token::CaretEq">CaretEq</a></code><a href="#impl-Parse-159" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-170" class="method hidden"><code>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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-160" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Colon2.html" title="struct syn::token::Colon2">Colon2</a></code><a href="#impl-Parse-160" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-171" class="method hidden"><code>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#707-754" 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.Colon.html" title="struct syn::token::Colon">Colon</a></code><a href="#impl-Parse-161" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-172" class="method hidden"><code>fn <a href="#method.parse-172" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-162" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Comma.html" title="struct syn::token::Comma">Comma</a></code><a href="#impl-Parse-162" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-173" class="method hidden"><code>fn <a href="#method.parse-173" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-163" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Const.html" title="struct syn::token::Const">Const</a></code><a href="#impl-Parse-163" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-174" class="method hidden"><code>fn <a href="#method.parse-174" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-164" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Continue.html" title="struct syn::token::Continue">Continue</a></code><a href="#impl-Parse-164" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-175" class="method hidden"><code>fn <a href="#method.parse-175" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-165" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Crate.html" title="struct syn::token::Crate">Crate</a></code><a href="#impl-Parse-165" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-176" class="method hidden"><code>fn <a href="#method.parse-176" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-166" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Default.html" title="struct syn::token::Default">Default</a></code><a href="#impl-Parse-166" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-177" class="method hidden"><code>fn <a href="#method.parse-177" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-167" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Div.html" title="struct syn::token::Div">Div</a></code><a href="#impl-Parse-167" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-178" class="method hidden"><code>fn <a href="#method.parse-178" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-168" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.DivEq.html" title="struct syn::token::DivEq">DivEq</a></code><a href="#impl-Parse-168" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-179" class="method hidden"><code>fn <a href="#method.parse-179" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-169" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Do.html" title="struct syn::token::Do">Do</a></code><a href="#impl-Parse-169" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-180" class="method hidden"><code>fn <a href="#method.parse-180" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-170" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Dollar.html" title="struct syn::token::Dollar">Dollar</a></code><a href="#impl-Parse-170" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-181" class="method hidden"><code>fn <a href="#method.parse-181" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-171" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Dot2.html" title="struct syn::token::Dot2">Dot2</a></code><a href="#impl-Parse-171" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-182" class="method hidden"><code>fn <a href="#method.parse-182" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-172" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Dot3.html" title="struct syn::token::Dot3">Dot3</a></code><a href="#impl-Parse-172" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-183" class="method hidden"><code>fn <a href="#method.parse-183" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-173" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Dot.html" title="struct syn::token::Dot">Dot</a></code><a href="#impl-Parse-173" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-184" class="method hidden"><code>fn <a href="#method.parse-184" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-174" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.DotDotEq.html" title="struct syn::token::DotDotEq">DotDotEq</a></code><a href="#impl-Parse-174" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-185" class="method hidden"><code>fn <a href="#method.parse-185" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-175" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Dyn.html" title="struct syn::token::Dyn">Dyn</a></code><a href="#impl-Parse-175" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-186" class="method hidden"><code>fn <a href="#method.parse-186" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-176" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Else.html" title="struct syn::token::Else">Else</a></code><a href="#impl-Parse-176" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-187" class="method hidden"><code>fn <a href="#method.parse-187" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-177" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Enum.html" title="struct syn::token::Enum">Enum</a></code><a href="#impl-Parse-177" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-188" class="method hidden"><code>fn <a href="#method.parse-188" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-178" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Eq.html" title="struct syn::token::Eq">Eq</a></code><a href="#impl-Parse-178" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-189" class="method hidden"><code>fn <a href="#method.parse-189" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-179" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.EqEq.html" title="struct syn::token::EqEq">EqEq</a></code><a href="#impl-Parse-179" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-190" class="method hidden"><code>fn <a href="#method.parse-190" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-180" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Extern.html" title="struct syn::token::Extern">Extern</a></code><a href="#impl-Parse-180" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-191" class="method hidden"><code>fn <a href="#method.parse-191" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-181" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.FatArrow.html" title="struct syn::token::FatArrow">FatArrow</a></code><a href="#impl-Parse-181" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-192" class="method hidden"><code>fn <a href="#method.parse-192" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-182" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Final.html" title="struct syn::token::Final">Final</a></code><a href="#impl-Parse-182" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-193" class="method hidden"><code>fn <a href="#method.parse-193" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-183" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Fn.html" title="struct syn::token::Fn">Fn</a></code><a href="#impl-Parse-183" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-194" class="method hidden"><code>fn <a href="#method.parse-194" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-184" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.For.html" title="struct syn::token::For">For</a></code><a href="#impl-Parse-184" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-195" class="method hidden"><code>fn <a href="#method.parse-195" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-185" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Ge.html" title="struct syn::token::Ge">Ge</a></code><a href="#impl-Parse-185" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-196" class="method hidden"><code>fn <a href="#method.parse-196" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-186" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Gt.html" title="struct syn::token::Gt">Gt</a></code><a href="#impl-Parse-186" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-197" class="method hidden"><code>fn <a href="#method.parse-197" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-187" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.If.html" title="struct syn::token::If">If</a></code><a href="#impl-Parse-187" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-198" class="method hidden"><code>fn <a href="#method.parse-198" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-188" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Impl.html" title="struct syn::token::Impl">Impl</a></code><a href="#impl-Parse-188" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-199" class="method hidden"><code>fn <a href="#method.parse-199" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-189" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.In.html" title="struct syn::token::In">In</a></code><a href="#impl-Parse-189" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-200" class="method hidden"><code>fn <a href="#method.parse-200" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-190" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.LArrow.html" title="struct syn::token::LArrow">LArrow</a></code><a href="#impl-Parse-190" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-201" class="method hidden"><code>fn <a href="#method.parse-201" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-191" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Le.html" title="struct syn::token::Le">Le</a></code><a href="#impl-Parse-191" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-202" class="method hidden"><code>fn <a href="#method.parse-202" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-192" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Let.html" title="struct syn::token::Let">Let</a></code><a href="#impl-Parse-192" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-203" class="method hidden"><code>fn <a href="#method.parse-203" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-193" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Loop.html" title="struct syn::token::Loop">Loop</a></code><a href="#impl-Parse-193" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-204" class="method hidden"><code>fn <a href="#method.parse-204" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-194" 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-194" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-205" class="method hidden"><code>fn <a href="#method.parse-205" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-195" 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-195" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-206" class="method hidden"><code>fn <a href="#method.parse-206" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-196" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Match.html" title="struct syn::token::Match">Match</a></code><a href="#impl-Parse-196" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-207" class="method hidden"><code>fn <a href="#method.parse-207" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-197" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Mod.html" title="struct syn::token::Mod">Mod</a></code><a href="#impl-Parse-197" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-208" class="method hidden"><code>fn <a href="#method.parse-208" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-198" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Move.html" title="struct syn::token::Move">Move</a></code><a href="#impl-Parse-198" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-209" class="method hidden"><code>fn <a href="#method.parse-209" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-199" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.MulEq.html" title="struct syn::token::MulEq">MulEq</a></code><a href="#impl-Parse-199" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-210" class="method hidden"><code>fn <a href="#method.parse-210" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-200" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Mut.html" title="struct syn::token::Mut">Mut</a></code><a href="#impl-Parse-200" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-211" class="method hidden"><code>fn <a href="#method.parse-211" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-201" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Ne.html" title="struct syn::token::Ne">Ne</a></code><a href="#impl-Parse-201" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-212" class="method hidden"><code>fn <a href="#method.parse-212" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-202" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Or.html" title="struct syn::token::Or">Or</a></code><a href="#impl-Parse-202" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-213" class="method hidden"><code>fn <a href="#method.parse-213" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-203" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.OrEq.html" title="struct syn::token::OrEq">OrEq</a></code><a href="#impl-Parse-203" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-214" class="method hidden"><code>fn <a href="#method.parse-214" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-204" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.OrOr.html" title="struct syn::token::OrOr">OrOr</a></code><a href="#impl-Parse-204" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-215" class="method hidden"><code>fn <a href="#method.parse-215" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-205" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Override.html" title="struct syn::token::Override">Override</a></code><a href="#impl-Parse-205" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-216" class="method hidden"><code>fn <a href="#method.parse-216" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-206" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Pound.html" title="struct syn::token::Pound">Pound</a></code><a href="#impl-Parse-206" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-217" class="method hidden"><code>fn <a href="#method.parse-217" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-207" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Priv.html" title="struct syn::token::Priv">Priv</a></code><a href="#impl-Parse-207" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-218" class="method hidden"><code>fn <a href="#method.parse-218" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-208" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Pub.html" title="struct syn::token::Pub">Pub</a></code><a href="#impl-Parse-208" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-219" class="method hidden"><code>fn <a href="#method.parse-219" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-209" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Question.html" title="struct syn::token::Question">Question</a></code><a href="#impl-Parse-209" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-220" class="method hidden"><code>fn <a href="#method.parse-220" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-210" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.RArrow.html" title="struct syn::token::RArrow">RArrow</a></code><a href="#impl-Parse-210" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-221" class="method hidden"><code>fn <a href="#method.parse-221" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-211" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Ref.html" title="struct syn::token::Ref">Ref</a></code><a href="#impl-Parse-211" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-222" class="method hidden"><code>fn <a href="#method.parse-222" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-212" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Rem.html" title="struct syn::token::Rem">Rem</a></code><a href="#impl-Parse-212" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-223" class="method hidden"><code>fn <a href="#method.parse-223" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-213" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.RemEq.html" title="struct syn::token::RemEq">RemEq</a></code><a href="#impl-Parse-213" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-224" class="method hidden"><code>fn <a href="#method.parse-224" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-214" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Return.html" title="struct syn::token::Return">Return</a></code><a href="#impl-Parse-214" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-225" class="method hidden"><code>fn <a href="#method.parse-225" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-215" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.SelfType.html" title="struct syn::token::SelfType">SelfType</a></code><a href="#impl-Parse-215" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-226" class="method hidden"><code>fn <a href="#method.parse-226" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-216" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.SelfValue.html" title="struct syn::token::SelfValue">SelfValue</a></code><a href="#impl-Parse-216" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-227" class="method hidden"><code>fn <a href="#method.parse-227" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-217" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Semi.html" title="struct syn::token::Semi">Semi</a></code><a href="#impl-Parse-217" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-228" class="method hidden"><code>fn <a href="#method.parse-228" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-218" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Shl.html" title="struct syn::token::Shl">Shl</a></code><a href="#impl-Parse-218" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-229" class="method hidden"><code>fn <a href="#method.parse-229" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-219" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.ShlEq.html" title="struct syn::token::ShlEq">ShlEq</a></code><a href="#impl-Parse-219" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-230" class="method hidden"><code>fn <a href="#method.parse-230" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-220" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Shr.html" title="struct syn::token::Shr">Shr</a></code><a href="#impl-Parse-220" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-231" class="method hidden"><code>fn <a href="#method.parse-231" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-221" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.ShrEq.html" title="struct syn::token::ShrEq">ShrEq</a></code><a href="#impl-Parse-221" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-232" class="method hidden"><code>fn <a href="#method.parse-232" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-222" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Star.html" title="struct syn::token::Star">Star</a></code><a href="#impl-Parse-222" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-233" class="method hidden"><code>fn <a href="#method.parse-233" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-223" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Static.html" title="struct syn::token::Static">Static</a></code><a href="#impl-Parse-223" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-234" class="method hidden"><code>fn <a href="#method.parse-234" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-224" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Struct.html" title="struct syn::token::Struct">Struct</a></code><a href="#impl-Parse-224" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-235" class="method hidden"><code>fn <a href="#method.parse-235" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-225" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Sub.html" title="struct syn::token::Sub">Sub</a></code><a href="#impl-Parse-225" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-236" class="method hidden"><code>fn <a href="#method.parse-236" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-226" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.SubEq.html" title="struct syn::token::SubEq">SubEq</a></code><a href="#impl-Parse-226" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-237" class="method hidden"><code>fn <a href="#method.parse-237" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-227" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Super.html" title="struct syn::token::Super">Super</a></code><a href="#impl-Parse-227" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-238" class="method hidden"><code>fn <a href="#method.parse-238" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-228" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Tilde.html" title="struct syn::token::Tilde">Tilde</a></code><a href="#impl-Parse-228" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#707-754" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-239" class="method hidden"><code>fn <a href="#method.parse-239" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#707-754" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-229" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Trait.html" title="struct syn::token::Trait">Trait</a></code><a href="#impl-Parse-229" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-240" class="method hidden"><code>fn <a href="#method.parse-240" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-230" 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-230" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-241" class="method hidden"><code>fn <a href="#method.parse-241" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-231" 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-231" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-242" class="method hidden"><code>fn <a href="#method.parse-242" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-232" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Typeof.html" title="struct syn::token::Typeof">Typeof</a></code><a href="#impl-Parse-232" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-243" class="method hidden"><code>fn <a href="#method.parse-243" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-233" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Underscore.html" title="struct syn::token::Underscore">Underscore</a></code><a href="#impl-Parse-233" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#570-586" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-244" class="method hidden"><code>fn <a href="#method.parse-244" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#571-585" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-234" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Union.html" title="struct syn::token::Union">Union</a></code><a href="#impl-Parse-234" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-245" class="method hidden"><code>fn <a href="#method.parse-245" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-235" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Unsafe.html" title="struct syn::token::Unsafe">Unsafe</a></code><a href="#impl-Parse-235" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-246" class="method hidden"><code>fn <a href="#method.parse-246" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-236" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Unsized.html" title="struct syn::token::Unsized">Unsized</a></code><a href="#impl-Parse-236" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-247" class="method hidden"><code>fn <a href="#method.parse-247" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-237" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Use.html" title="struct syn::token::Use">Use</a></code><a href="#impl-Parse-237" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-248" class="method hidden"><code>fn <a href="#method.parse-248" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-238" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Virtual.html" title="struct syn::token::Virtual">Virtual</a></code><a href="#impl-Parse-238" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-249" class="method hidden"><code>fn <a href="#method.parse-249" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-239" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.Where.html" title="struct syn::token::Where">Where</a></code><a href="#impl-Parse-239" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-250" class="method hidden"><code>fn <a href="#method.parse-250" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-240" class="impl"><code class="in-band">impl Parse for <a class="struct" href="../../syn/token/struct.While.html" title="struct syn::token::While">While</a></code><a href="#impl-Parse-240" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-251" class="method hidden"><code>fn <a href="#method.parse-251" class="fnname">parse</a>(input: <a class="type" href="../../syn/parse/type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a><'_>) -> <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#652-705" title="goto source code">[src]</a></h4></div><h3 id="impl-Parse-241" 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-241" class="anchor"></a><a class="srclink" href="../../src/syn/token.rs.html#652-705" title="goto source code">[src]</a></h3><div class="impl-items"><h4 id="method.parse-252" class="method hidden"><code>fn <a href="#method.parse-252" 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#652-705" title="goto source code">[src]</a></h4></div></div><span class="loading-content">Loading content...</span><script type="text/javascript" src="../../implementors/syn/parse/trait.Parse.js" async></script></section><section id="search" class="content hidden"></section><section class="footer"></section><script>window.rootPath = "../../";window.currentCrate = "syn";</script><script src="../../main.js"></script><script defer src="../../search-index.js"></script></body></html> |