rtic/stable/api/syn/parse/trait.Parse.html

8 lines
116 KiB
HTML
Raw Normal View History

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Parsing interface implemented by all types that can be parsed in a default way from a token stream."><title>Parse in syn::parse - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-46f98efaafac5295.ttf.woff2,FiraSans-Regular-018c141bf0843ffd.woff2,FiraSans-Medium-8f9a781e4970d388.woff2,SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2,SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../static.files/rustdoc-b0742ba02757f159.css"><meta name="rustdoc-vars" data-root-path="../../" data-static-root-path="../../static.files/" data-current-crate="syn" data-themes="" data-resource-suffix="" data-rustdoc-version="1.83.0 (90b35a623 2024-11-26)" data-channel="1.83.0" data-search-js="search-f0d225181b97f9a4.js" data-settings-js="settings-805db61a62df4bd2.js" ><script src="../../static.files/storage-1d39b6787ed640ff.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../static.files/main-f070b9041d14864c.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-0111fcff984fae8f.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../syn/index.html">syn</a><span class="version">2.0.90</span></h2></div><div class="sidebar-elems"><section id="rustdoc-toc"><h2 class="location"><a href="#">Parse</a></h2><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.parse" title="parse">parse</a></li></ul><h3><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul class="block"><li><a href="#impl-Parse-for-Box%3CT%3E" title="Box&#60;T&#62;">Box&#60;T&#62;</a></li><li><a href="#impl-Parse-for-Group" title="Group">Group</a></li><li><a href="#impl-Parse-for-Literal" title="Literal">Literal</a></li><li><a href="#impl-Parse-for-Option%3CAbi%3E" title="Option&#60;Abi&#62;">Option&#60;Abi&#62;</a></li><li><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E" title="Option&#60;BoundLifetimes&#62;">Option&#60;BoundLifetimes&#62;</a></li><li><a href="#impl-Parse-for-Option%3CLabel%3E" title="Option&#60;Label&#62;">Option&#60;Label&#62;</a></li><li><a href="#impl-Parse-for-Option%3CT%3E" title="Option&#60;T&#62;">Option&#60;T&#62;</a></li><li><a href="#impl-Parse-for-Option%3CWhereClause%3E" title="Option&#60;WhereClause&#62;">Option&#60;WhereClause&#62;</a></li><li><a href="#impl-Parse-for-Punct" title="Punct">Punct</a></li><li><a href="#impl-Parse-for-TokenStream" title="TokenStream">TokenStream</a></li><li><a href="#impl-Parse-for-TokenTree" title="TokenTree">TokenTree</a></li></ul><h3><a href="#object-safety">Object Safety</a></h3><h3><a href="#implementors">Implementors</a></h3></section><div id="rustdoc-modnav"><h2><a href="index.html">In syn::<wbr>parse</a></h2></div></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><span class="rustdoc-breadcrumbs"><a href="../index.html">syn</a>::<wbr><a href="index.html">parse</a></span><h1>Trait <span class="trait">Parse</span><button id="copy-path" title="Copy item path to clipboard">
// Required method
fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;;
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Parsing interface implemented by all types that can be parsed in a default
way from a token stream.</p>
<p>Refer to the <a href="index.html" title="mod syn::parse">module documentation</a> for details about implementing and using
the <code>Parse</code> trait.</p>
</div></details><h2 id="required-methods" class="section-header">Required Methods<a href="#required-methods" class="anchor">§</a></h2><div class="methods"><section id="tymethod.parse" class="method"><a class="src rightside" href="../../src/syn/parse.rs.html#215">source</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</h4></section></div><h2 id="object-safety" class="section-header">Object Safety<a href="#object-safety" class="anchor">§</a></h2><div class="object-safety-info">This trait is <b>not</b> <a href="https://doc.rust-lang.org/1.83.0/reference/items/traits.html#object-safety">object safe</a>.</div><h2 id="foreign-impls" class="section-header">Implementations on Foreign Types<a href="#foreign-impls" class="anchor">§</a></h2><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-TokenTree" class="impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1191-1198">source</a><a href="#impl-Parse-for-TokenTree" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="../../proc_macro2/enum.TokenTree.html" title="enum proc_macro2::TokenTree">TokenTree</a></h3></section></summary><div class="impl-items"><section id="method.parse" class="method trait-impl"><a class="src rightside" href="../../src/syn/parse.rs.html#1192-1197">source</a><a href="#method.parse" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CAbi%3E" class="impl"><a class="src rightside" href="../../src/syn/ty.rs.html#1064-1072">source</a><a href="#impl-Parse-for-Option%3CAbi%3E" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.83.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../struct.Abi.html" title="struct syn::Abi">Abi</a>&gt;</h3></section></summary><div class="impl-items"><section id="method.parse-1" class="method trait-impl"><a class="src rightside" href="../../src/syn/ty.rs.html#1065-1071">source</a><a href="#method.parse-1" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="type" href="type.ParseStream.html" title="type syn::parse::ParseStream">ParseStream</a>&lt;'_&gt;) -&gt; <a class="type" href="type.Result.html" title="type syn::parse::Result">Result</a>&lt;Self&gt;</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Parse-for-Option%3CBoundLifetimes%3E" class="impl"><a class="src rightside" href="../../src/syn/generics.rs.html#693-701">source</a><a href="#impl-Parse-for-Option%3CBoundLifetimes%3E" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Parse.html" title="trait syn::parse::Parse">Parse</a> for <a class="enum" href="https://doc.rust-lang.org/1.83.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../struct.BoundLifetimes.html" title="struct syn::BoundLifetimes">BoundLifetimes</a>&gt;</h3></section></summary><div class="impl-items"><section id="method.parse-2" class="method trait-impl"><a class="src rightside" href="../../src/syn/generics.rs.html#694-700">source</a><a href="#method.parse-2" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.parse" class="fn">parse</a>(input: <a class="ty