rust-analyzer/syntax/ast/trait.AstNode.html
github-merge-queue[bot] f85a7e858d deploy: 1485a8819f
2025-01-12 12:45:22 +00:00

30 lines
No EOL
93 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="The main trait to go from untyped `SyntaxNode` to a typed ast. The conversion itself has zero runtime cost: ast and syntax nodes have exactly the same representation: a pointer to the tree root and a pointer to the node itself."><title>AstNode in syntax::ast - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.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-9960930a.css"><link rel="stylesheet" href="../../static.files/rustdoc-42caa33d.css"><meta name="rustdoc-vars" data-root-path="../../" data-static-root-path="../../static.files/" data-current-crate="syntax" data-themes="" data-resource-suffix="" data-rustdoc-version="1.84.0 (9fc6b4312 2025-01-07)" data-channel="1.84.0" data-search-js="search-92e6798f.js" data-settings-js="settings-0f613d39.js" ><script src="../../static.files/storage-59e33391.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../static.files/main-5f194d8c.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-893ab5e7.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-6580c154.png"><link rel="icon" type="image/svg+xml" href="../../static.files/favicon-044be391.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="../../syntax/index.html">syntax</a><span class="version">0.0.0</span></h2></div><div class="sidebar-elems"><section id="rustdoc-toc"><h2 class="location"><a href="#">AstNode</a></h2><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.can_cast" title="can_cast">can_cast</a></li><li><a href="#tymethod.cast" title="cast">cast</a></li><li><a href="#tymethod.syntax" title="syntax">syntax</a></li></ul><h3><a href="#provided-methods">Provided Methods</a></h3><ul class="block"><li><a href="#method.clone_for_update" title="clone_for_update">clone_for_update</a></li><li><a href="#method.clone_subtree" title="clone_subtree">clone_subtree</a></li><li><a href="#method.kind" title="kind">kind</a></li></ul><h3><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul class="block"><li><a href="#impl-AstNode-for-Either%3CL,+R%3E" title="Either&#60;L, R&#62;">Either&#60;L, R&#62;</a></li></ul><h3><a href="#implementors">Implementors</a></h3></section><div id="rustdoc-modnav"><h2><a href="index.html">In syntax::<wbr>ast</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">syntax</a>::<wbr><a href="index.html">ast</a></span><h1>Trait <span class="trait">AstNode</span><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><a class="src" href="../../src/syntax/ast.rs.html#44-74">Source</a> </span></div><pre class="rust item-decl"><code>pub trait AstNode {
// Required methods
fn <a href="#tymethod.can_cast" class="fn">can_cast</a>(kind: <a class="enum" href="../enum.SyntaxKind.html" title="enum syntax::SyntaxKind">SyntaxKind</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.84.0/std/primitive.bool.html">bool</a>
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span>;
<span class="item-spacer"></span> fn <a href="#tymethod.cast" class="fn">cast</a>(syntax: <a class="type" href="../type.SyntaxNode.html" title="type syntax::SyntaxNode">SyntaxNode</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.84.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span>;
<span class="item-spacer"></span> fn <a href="#tymethod.syntax" class="fn">syntax</a>(&amp;self) -&gt; &amp;<a class="type" href="../type.SyntaxNode.html" title="type syntax::SyntaxNode">SyntaxNode</a>;
// Provided methods
fn <a href="#method.kind" class="fn">kind</a>() -&gt; <a class="enum" href="../enum.SyntaxKind.html" title="enum syntax::SyntaxKind">SyntaxKind</a>
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
<span class="item-spacer"></span> fn <a href="#method.clone_for_update" class="fn">clone_for_update</a>(&amp;self) -&gt; Self
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
<span class="item-spacer"></span> fn <a href="#method.clone_subtree" class="fn">clone_subtree</a>(&amp;self) -&gt; Self
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a></span> { ... }
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>The main trait to go from untyped <code>SyntaxNode</code> to a typed ast. The
conversion itself has zero runtime cost: ast and syntax nodes have exactly
the same representation: a pointer to the tree root and a pointer to the
node itself.</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.can_cast" class="method"><a class="src rightside" href="../../src/syntax/ast.rs.html#53-55">Source</a><h4 class="code-header">fn <a href="#tymethod.can_cast" class="fn">can_cast</a>(kind: <a class="enum" href="../enum.SyntaxKind.html" title="enum syntax::SyntaxKind">SyntaxKind</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.84.0/std/primitive.bool.html">bool</a><div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section><section id="tymethod.cast" class="method"><a class="src rightside" href="../../src/syntax/ast.rs.html#57-59">Source</a><h4 class="code-header">fn <a href="#tymethod.cast" class="fn">cast</a>(syntax: <a class="type" href="../type.SyntaxNode.html" title="type syntax::SyntaxNode">SyntaxNode</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.84.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;<div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section><section id="tymethod.syntax" class="method"><a class="src rightside" href="../../src/syntax/ast.rs.html#61">Source</a><h4 class="code-header">fn <a href="#tymethod.syntax" class="fn">syntax</a>(&amp;self) -&gt; &amp;<a class="type" href="../type.SyntaxNode.html" title="type syntax::SyntaxNode">SyntaxNode</a></h4></section></div><h2 id="provided-methods" class="section-header">Provided Methods<a href="#provided-methods" class="anchor">§</a></h2><div class="methods"><details class="toggle method-toggle" open><summary><section id="method.kind" class="method"><a class="src rightside" href="../../src/syntax/ast.rs.html#46-51">Source</a><h4 class="code-header">fn <a href="#method.kind" class="fn">kind</a>() -&gt; <a class="enum" href="../enum.SyntaxKind.html" title="enum syntax::SyntaxKind">SyntaxKind</a><div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class="docblock"><p>This panics if the <code>SyntaxKind</code> is not statically known.</p>
</div></details><section id="method.clone_for_update" class="method"><a class="src rightside" href="../../src/syntax/ast.rs.html#62-67">Source</a><h4 class="code-header">fn <a href="#method.clone_for_update" class="fn">clone_for_update</a>(&amp;self) -&gt; Self<div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section><section id="method.clone_subtree" class="method"><a class="src rightside" href="../../src/syntax/ast.rs.html#68-73">Source</a><h4 class="code-header">fn <a href="#method.clone_subtree" class="fn">clone_subtree</a>(&amp;self) -&gt; Self<div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></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-AstNode-for-Either%3CL,+R%3E" class="impl"><a class="src rightside" href="../../src/syntax/ast.rs.html#113-139">Source</a><a href="#impl-AstNode-for-Either%3CL,+R%3E" class="anchor">§</a><h3 class="code-header">impl&lt;L, R&gt; <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="https://docs.rs/either/1/either/enum.Either.html" title="enum either::Either">Either</a>&lt;L, R&gt;<div class="where">where
L: <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a>,
R: <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a>,</div></h3></section></summary><div class="impl-items"><section id="method.can_cast" class="method trait-impl"><a class="src rightside" href="../../src/syntax/ast.rs.html#118-123">Source</a><a href="#method.can_cast" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.can_cast" class="fn">can_cast</a>(kind: <a class="enum" href="../enum.SyntaxKind.html" title="enum syntax::SyntaxKind">SyntaxKind</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.84.0/std/primitive.bool.html">bool</a><div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section><section id="method.cast" class="method trait-impl"><a class="src rightside" href="../../src/syntax/ast.rs.html#125-134">Source</a><a href="#method.cast" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.cast" class="fn">cast</a>(syntax: <a class="type" href="../type.SyntaxNode.html" title="type syntax::SyntaxNode">SyntaxNode</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.84.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;<div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section><section id="method.syntax" class="method trait-impl"><a class="src rightside" href="../../src/syntax/ast.rs.html#136-138">Source</a><a href="#method.syntax" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.syntax" class="fn">syntax</a>(&amp;self) -&gt; &amp;<a class="type" href="../type.SyntaxNode.html" title="type syntax::SyntaxNode">SyntaxNode</a></h4></section></div></details><h2 id="implementors" class="section-header">Implementors<a href="#implementors" class="anchor">§</a></h2><div id="implementors-list"><section id="impl-AstNode-for-Adt" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5750-5771">Source</a><a href="#impl-AstNode-for-Adt" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.Adt.html" title="enum syntax::ast::Adt">Adt</a></h3></section><section id="impl-AstNode-for-AsmOperand" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5788-5813">Source</a><a href="#impl-AstNode-for-AsmOperand" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.AsmOperand.html" title="enum syntax::ast::AsmOperand">AsmOperand</a></h3></section><section id="impl-AstNode-for-AsmPiece" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5826-5849">Source</a><a href="#impl-AstNode-for-AsmPiece" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.AsmPiece.html" title="enum syntax::ast::AsmPiece">AsmPiece</a></h3></section><section id="impl-AstNode-for-AssocItem" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5866-5889">Source</a><a href="#impl-AstNode-for-AssocItem" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.AssocItem.html" title="enum syntax::ast::AssocItem">AssocItem</a></h3></section><section id="impl-AstNode-for-CallableExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/expr_ext.rs.html#447-472">Source</a><a href="#impl-AstNode-for-CallableExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.CallableExpr.html" title="enum syntax::ast::CallableExpr">CallableExpr</a></h3></section><section id="impl-AstNode-for-ElseBranch" class="impl"><a class="src rightside" href="../../src/syntax/ast/expr_ext.rs.html#53-72">Source</a><a href="#impl-AstNode-for-ElseBranch" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.ElseBranch.html" title="enum syntax::ast::ElseBranch">ElseBranch</a></h3></section><section id="impl-AstNode-for-Expr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6034-6161">Source</a><a href="#impl-AstNode-for-Expr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.Expr.html" title="enum syntax::ast::Expr">Expr</a></h3></section><section id="impl-AstNode-for-ExternItem" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6178-6201">Source</a><a href="#impl-AstNode-for-ExternItem" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.ExternItem.html" title="enum syntax::ast::ExternItem">ExternItem</a></h3></section><section id="impl-AstNode-for-FieldList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6210-6229">Source</a><a href="#impl-AstNode-for-FieldList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.FieldList.html" title="enum syntax::ast::FieldList">FieldList</a></h3></section><section id="impl-AstNode-for-GenericArg" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6246-6271">Source</a><a href="#impl-AstNode-for-GenericArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.GenericArg.html" title="enum syntax::ast::GenericArg">GenericArg</a></h3></section><section id="impl-AstNode-for-GenericParam" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6284-6307">Source</a><a href="#impl-AstNode-for-GenericParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.GenericParam.html" title="enum syntax::ast::GenericParam">GenericParam</a></h3></section><section id="impl-AstNode-for-Item" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6376-6446">Source</a><a href="#impl-AstNode-for-Item" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.Item.html" title="enum syntax::ast::Item">Item</a></h3></section><section id="impl-AstNode-for-Macro" class="impl"><a class="src rightside" href="../../src/syntax/ast/node_ext.rs.html#103-121">Source</a><a href="#impl-AstNode-for-Macro" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.Macro.html" title="enum syntax::ast::Macro">Macro</a></h3></section><section id="impl-AstNode-for-NameLike" class="impl"><a class="src rightside" href="../../src/syntax/ast/node_ext.rs.html#569-589">Source</a><a href="#impl-AstNode-for-NameLike" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.NameLike.html" title="enum syntax::ast::NameLike">NameLike</a></h3></section><section id="impl-AstNode-for-NameOrNameRef" class="impl"><a class="src rightside" href="../../src/syntax/ast/node_ext.rs.html#611-629">Source</a><a href="#impl-AstNode-for-NameOrNameRef" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.NameOrNameRef.html" title="enum syntax::ast::NameOrNameRef">NameOrNameRef</a></h3></section><section id="impl-AstNode-for-Pat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6511-6578">Source</a><a href="#impl-AstNode-for-Pat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.Pat.html" title="enum syntax::ast::Pat">Pat</a></h3></section><section id="impl-AstNode-for-Stmt" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated.rs.html#16-41">Source</a><a href="#impl-AstNode-for-Stmt" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.Stmt.html" title="enum syntax::ast::Stmt">Stmt</a></h3></section><section id="impl-AstNode-for-TraitOrAlias" class="impl"><a class="src rightside" href="../../src/syntax/ast/node_ext.rs.html#896-922">Source</a><a href="#impl-AstNode-for-TraitOrAlias" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.TraitOrAlias.html" title="enum syntax::ast::TraitOrAlias">TraitOrAlias</a></h3></section><section id="impl-AstNode-for-Type" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6647-6708">Source</a><a href="#impl-AstNode-for-Type" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.Type.html" title="enum syntax::ast::Type">Type</a></h3></section><section id="impl-AstNode-for-TypeOrConstParam" class="impl"><a class="src rightside" href="../../src/syntax/ast/node_ext.rs.html#851-877">Source</a><a href="#impl-AstNode-for-TypeOrConstParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.TypeOrConstParam.html" title="enum syntax::ast::TypeOrConstParam">TypeOrConstParam</a></h3></section><section id="impl-AstNode-for-UseBoundGenericArg" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6717-6736">Source</a><a href="#impl-AstNode-for-UseBoundGenericArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="enum" href="enum.UseBoundGenericArg.html" title="enum syntax::ast::UseBoundGenericArg">UseBoundGenericArg</a></h3></section><section id="impl-AstNode-for-Abi" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2504-2524">Source</a><a href="#impl-AstNode-for-Abi" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Abi.html" title="struct syntax::ast::Abi">Abi</a></h3></section><section id="impl-AstNode-for-AnyHasArgList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6743-6752">Source</a><a href="#impl-AstNode-for-AnyHasArgList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasArgList.html" title="struct syntax::ast::AnyHasArgList">AnyHasArgList</a></h3></section><section id="impl-AstNode-for-AnyHasAttrs" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6767-6852">Source</a><a href="#impl-AstNode-for-AnyHasAttrs" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasAttrs.html" title="struct syntax::ast::AnyHasAttrs">AnyHasAttrs</a></h3></section><section id="impl-AstNode-for-AnyHasDocComments" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#7147-7181">Source</a><a href="#impl-AstNode-for-AnyHasDocComments" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasDocComments.html" title="struct syntax::ast::AnyHasDocComments">AnyHasDocComments</a></h3></section><section id="impl-AstNode-for-AnyHasGenericArgs" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#7272-7283">Source</a><a href="#impl-AstNode-for-AnyHasGenericArgs" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasGenericArgs.html" title="struct syntax::ast::AnyHasGenericArgs">AnyHasGenericArgs</a></h3></section><section id="impl-AstNode-for-AnyHasGenericParams" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#7302-7313">Source</a><a href="#impl-AstNode-for-AnyHasGenericParams" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasGenericParams.html" title="struct syntax::ast::AnyHasGenericParams">AnyHasGenericParams</a></h3></section><section id="impl-AstNode-for-AnyHasLoopBody" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#7352-7361">Source</a><a href="#impl-AstNode-for-AnyHasLoopBody" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasLoopBody.html" title="struct syntax::ast::AnyHasLoopBody">AnyHasLoopBody</a></h3></section><section id="impl-AstNode-for-AnyHasModuleItem" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#7380-7389">Source</a><a href="#impl-AstNode-for-AnyHasModuleItem" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasModuleItem.html" title="struct syntax::ast::AnyHasModuleItem">AnyHasModuleItem</a></h3></section><section id="impl-AstNode-for-AnyHasName" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#7408-7442">Source</a><a href="#impl-AstNode-for-AnyHasName" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasName.html" title="struct syntax::ast::AnyHasName">AnyHasName</a></h3></section><section id="impl-AstNode-for-AnyHasTypeBounds" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#7533-7547">Source</a><a href="#impl-AstNode-for-AnyHasTypeBounds" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasTypeBounds.html" title="struct syntax::ast::AnyHasTypeBounds">AnyHasTypeBounds</a></h3></section><section id="impl-AstNode-for-AnyHasVisibility" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#7578-7609">Source</a><a href="#impl-AstNode-for-AnyHasVisibility" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AnyHasVisibility.html" title="struct syntax::ast::AnyHasVisibility">AnyHasVisibility</a></h3></section><section id="impl-AstNode-for-ArgList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2525-2545">Source</a><a href="#impl-AstNode-for-ArgList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ArgList.html" title="struct syntax::ast::ArgList">ArgList</a></h3></section><section id="impl-AstNode-for-ArrayExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2546-2566">Source</a><a href="#impl-AstNode-for-ArrayExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ArrayExpr.html" title="struct syntax::ast::ArrayExpr">ArrayExpr</a></h3></section><section id="impl-AstNode-for-ArrayType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2567-2587">Source</a><a href="#impl-AstNode-for-ArrayType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ArrayType.html" title="struct syntax::ast::ArrayType">ArrayType</a></h3></section><section id="impl-AstNode-for-AsmClobberAbi" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2588-2608">Source</a><a href="#impl-AstNode-for-AsmClobberAbi" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmClobberAbi.html" title="struct syntax::ast::AsmClobberAbi">AsmClobberAbi</a></h3></section><section id="impl-AstNode-for-AsmConst" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2609-2629">Source</a><a href="#impl-AstNode-for-AsmConst" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmConst.html" title="struct syntax::ast::AsmConst">AsmConst</a></h3></section><section id="impl-AstNode-for-AsmDirSpec" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2630-2650">Source</a><a href="#impl-AstNode-for-AsmDirSpec" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmDirSpec.html" title="struct syntax::ast::AsmDirSpec">AsmDirSpec</a></h3></section><section id="impl-AstNode-for-AsmExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2651-2671">Source</a><a href="#impl-AstNode-for-AsmExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmExpr.html" title="struct syntax::ast::AsmExpr">AsmExpr</a></h3></section><section id="impl-AstNode-for-AsmLabel" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2672-2692">Source</a><a href="#impl-AstNode-for-AsmLabel" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmLabel.html" title="struct syntax::ast::AsmLabel">AsmLabel</a></h3></section><section id="impl-AstNode-for-AsmOperandExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2693-2713">Source</a><a href="#impl-AstNode-for-AsmOperandExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmOperandExpr.html" title="struct syntax::ast::AsmOperandExpr">AsmOperandExpr</a></h3></section><section id="impl-AstNode-for-AsmOperandNamed" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2714-2734">Source</a><a href="#impl-AstNode-for-AsmOperandNamed" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmOperandNamed.html" title="struct syntax::ast::AsmOperandNamed">AsmOperandNamed</a></h3></section><section id="impl-AstNode-for-AsmOption" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2735-2755">Source</a><a href="#impl-AstNode-for-AsmOption" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmOption.html" title="struct syntax::ast::AsmOption">AsmOption</a></h3></section><section id="impl-AstNode-for-AsmOptions" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2756-2776">Source</a><a href="#impl-AstNode-for-AsmOptions" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmOptions.html" title="struct syntax::ast::AsmOptions">AsmOptions</a></h3></section><section id="impl-AstNode-for-AsmRegOperand" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2777-2797">Source</a><a href="#impl-AstNode-for-AsmRegOperand" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmRegOperand.html" title="struct syntax::ast::AsmRegOperand">AsmRegOperand</a></h3></section><section id="impl-AstNode-for-AsmRegSpec" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2798-2818">Source</a><a href="#impl-AstNode-for-AsmRegSpec" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmRegSpec.html" title="struct syntax::ast::AsmRegSpec">AsmRegSpec</a></h3></section><section id="impl-AstNode-for-AsmSym" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2819-2839">Source</a><a href="#impl-AstNode-for-AsmSym" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AsmSym.html" title="struct syntax::ast::AsmSym">AsmSym</a></h3></section><section id="impl-AstNode-for-AssocItemList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2840-2860">Source</a><a href="#impl-AstNode-for-AssocItemList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AssocItemList.html" title="struct syntax::ast::AssocItemList">AssocItemList</a></h3></section><section id="impl-AstNode-for-AssocTypeArg" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2861-2881">Source</a><a href="#impl-AstNode-for-AssocTypeArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AssocTypeArg.html" title="struct syntax::ast::AssocTypeArg">AssocTypeArg</a></h3></section><section id="impl-AstNode-for-Attr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2882-2902">Source</a><a href="#impl-AstNode-for-Attr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Attr.html" title="struct syntax::ast::Attr">Attr</a></h3></section><section id="impl-AstNode-for-AwaitExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2903-2923">Source</a><a href="#impl-AstNode-for-AwaitExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.AwaitExpr.html" title="struct syntax::ast::AwaitExpr">AwaitExpr</a></h3></section><section id="impl-AstNode-for-BecomeExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2924-2944">Source</a><a href="#impl-AstNode-for-BecomeExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.BecomeExpr.html" title="struct syntax::ast::BecomeExpr">BecomeExpr</a></h3></section><section id="impl-AstNode-for-BinExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2945-2965">Source</a><a href="#impl-AstNode-for-BinExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.BinExpr.html" title="struct syntax::ast::BinExpr">BinExpr</a></h3></section><section id="impl-AstNode-for-BlockExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2966-2986">Source</a><a href="#impl-AstNode-for-BlockExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.BlockExpr.html" title="struct syntax::ast::BlockExpr">BlockExpr</a></h3></section><section id="impl-AstNode-for-BoxPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2987-3007">Source</a><a href="#impl-AstNode-for-BoxPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.BoxPat.html" title="struct syntax::ast::BoxPat">BoxPat</a></h3></section><section id="impl-AstNode-for-BreakExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3008-3028">Source</a><a href="#impl-AstNode-for-BreakExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.BreakExpr.html" title="struct syntax::ast::BreakExpr">BreakExpr</a></h3></section><section id="impl-AstNode-for-CallExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3029-3049">Source</a><a href="#impl-AstNode-for-CallExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.CallExpr.html" title="struct syntax::ast::CallExpr">CallExpr</a></h3></section><section id="impl-AstNode-for-CastExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3050-3070">Source</a><a href="#impl-AstNode-for-CastExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.CastExpr.html" title="struct syntax::ast::CastExpr">CastExpr</a></h3></section><section id="impl-AstNode-for-ClosureBinder" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3071-3091">Source</a><a href="#impl-AstNode-for-ClosureBinder" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ClosureBinder.html" title="struct syntax::ast::ClosureBinder">ClosureBinder</a></h3></section><section id="impl-AstNode-for-ClosureExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3092-3112">Source</a><a href="#impl-AstNode-for-ClosureExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ClosureExpr.html" title="struct syntax::ast::ClosureExpr">ClosureExpr</a></h3></section><section id="impl-AstNode-for-Const" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3113-3133">Source</a><a href="#impl-AstNode-for-Const" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Const.html" title="struct syntax::ast::Const">Const</a></h3></section><section id="impl-AstNode-for-ConstArg" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3134-3154">Source</a><a href="#impl-AstNode-for-ConstArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ConstArg.html" title="struct syntax::ast::ConstArg">ConstArg</a></h3></section><section id="impl-AstNode-for-ConstBlockPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3155-3175">Source</a><a href="#impl-AstNode-for-ConstBlockPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ConstBlockPat.html" title="struct syntax::ast::ConstBlockPat">ConstBlockPat</a></h3></section><section id="impl-AstNode-for-ConstParam" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3176-3196">Source</a><a href="#impl-AstNode-for-ConstParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ConstParam.html" title="struct syntax::ast::ConstParam">ConstParam</a></h3></section><section id="impl-AstNode-for-ContinueExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3197-3217">Source</a><a href="#impl-AstNode-for-ContinueExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ContinueExpr.html" title="struct syntax::ast::ContinueExpr">ContinueExpr</a></h3></section><section id="impl-AstNode-for-DynTraitType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3218-3238">Source</a><a href="#impl-AstNode-for-DynTraitType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.DynTraitType.html" title="struct syntax::ast::DynTraitType">DynTraitType</a></h3></section><section id="impl-AstNode-for-Enum" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3239-3259">Source</a><a href="#impl-AstNode-for-Enum" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Enum.html" title="struct syntax::ast::Enum">Enum</a></h3></section><section id="impl-AstNode-for-ExprStmt" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3260-3280">Source</a><a href="#impl-AstNode-for-ExprStmt" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ExprStmt.html" title="struct syntax::ast::ExprStmt">ExprStmt</a></h3></section><section id="impl-AstNode-for-ExternBlock" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3281-3301">Source</a><a href="#impl-AstNode-for-ExternBlock" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ExternBlock.html" title="struct syntax::ast::ExternBlock">ExternBlock</a></h3></section><section id="impl-AstNode-for-ExternCrate" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3302-3322">Source</a><a href="#impl-AstNode-for-ExternCrate" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ExternCrate.html" title="struct syntax::ast::ExternCrate">ExternCrate</a></h3></section><section id="impl-AstNode-for-ExternItemList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3323-3343">Source</a><a href="#impl-AstNode-for-ExternItemList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ExternItemList.html" title="struct syntax::ast::ExternItemList">ExternItemList</a></h3></section><section id="impl-AstNode-for-FieldExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3344-3364">Source</a><a href="#impl-AstNode-for-FieldExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.FieldExpr.html" title="struct syntax::ast::FieldExpr">FieldExpr</a></h3></section><section id="impl-AstNode-for-Fn" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3365-3385">Source</a><a href="#impl-AstNode-for-Fn" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Fn.html" title="struct syntax::ast::Fn">Fn</a></h3></section><section id="impl-AstNode-for-FnPtrType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3386-3406">Source</a><a href="#impl-AstNode-for-FnPtrType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.FnPtrType.html" title="struct syntax::ast::FnPtrType">FnPtrType</a></h3></section><section id="impl-AstNode-for-ForExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3407-3427">Source</a><a href="#impl-AstNode-for-ForExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ForExpr.html" title="struct syntax::ast::ForExpr">ForExpr</a></h3></section><section id="impl-AstNode-for-ForType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3428-3448">Source</a><a href="#impl-AstNode-for-ForType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ForType.html" title="struct syntax::ast::ForType">ForType</a></h3></section><section id="impl-AstNode-for-FormatArgsArg" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3449-3469">Source</a><a href="#impl-AstNode-for-FormatArgsArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.FormatArgsArg.html" title="struct syntax::ast::FormatArgsArg">FormatArgsArg</a></h3></section><section id="impl-AstNode-for-FormatArgsExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3470-3490">Source</a><a href="#impl-AstNode-for-FormatArgsExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.FormatArgsExpr.html" title="struct syntax::ast::FormatArgsExpr">FormatArgsExpr</a></h3></section><section id="impl-AstNode-for-GenericArgList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3491-3511">Source</a><a href="#impl-AstNode-for-GenericArgList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.GenericArgList.html" title="struct syntax::ast::GenericArgList">GenericArgList</a></h3></section><section id="impl-AstNode-for-GenericParamList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3512-3532">Source</a><a href="#impl-AstNode-for-GenericParamList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.GenericParamList.html" title="struct syntax::ast::GenericParamList">GenericParamList</a></h3></section><section id="impl-AstNode-for-IdentPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3533-3553">Source</a><a href="#impl-AstNode-for-IdentPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.IdentPat.html" title="struct syntax::ast::IdentPat">IdentPat</a></h3></section><section id="impl-AstNode-for-IfExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3554-3574">Source</a><a href="#impl-AstNode-for-IfExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.IfExpr.html" title="struct syntax::ast::IfExpr">IfExpr</a></h3></section><section id="impl-AstNode-for-Impl" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3575-3595">Source</a><a href="#impl-AstNode-for-Impl" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Impl.html" title="struct syntax::ast::Impl">Impl</a></h3></section><section id="impl-AstNode-for-ImplTraitType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3596-3616">Source</a><a href="#impl-AstNode-for-ImplTraitType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ImplTraitType.html" title="struct syntax::ast::ImplTraitType">ImplTraitType</a></h3></section><section id="impl-AstNode-for-IndexExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3617-3637">Source</a><a href="#impl-AstNode-for-IndexExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.IndexExpr.html" title="struct syntax::ast::IndexExpr">IndexExpr</a></h3></section><section id="impl-AstNode-for-InferType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3638-3658">Source</a><a href="#impl-AstNode-for-InferType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.InferType.html" title="struct syntax::ast::InferType">InferType</a></h3></section><section id="impl-AstNode-for-ItemList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3659-3679">Source</a><a href="#impl-AstNode-for-ItemList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ItemList.html" title="struct syntax::ast::ItemList">ItemList</a></h3></section><section id="impl-AstNode-for-Label" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3680-3700">Source</a><a href="#impl-AstNode-for-Label" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Label.html" title="struct syntax::ast::Label">Label</a></h3></section><section id="impl-AstNode-for-LetElse" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3701-3721">Source</a><a href="#impl-AstNode-for-LetElse" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.LetElse.html" title="struct syntax::ast::LetElse">LetElse</a></h3></section><section id="impl-AstNode-for-LetExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3722-3742">Source</a><a href="#impl-AstNode-for-LetExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.LetExpr.html" title="struct syntax::ast::LetExpr">LetExpr</a></h3></section><section id="impl-AstNode-for-LetStmt" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3743-3763">Source</a><a href="#impl-AstNode-for-LetStmt" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.LetStmt.html" title="struct syntax::ast::LetStmt">LetStmt</a></h3></section><section id="impl-AstNode-for-Lifetime" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3764-3784">Source</a><a href="#impl-AstNode-for-Lifetime" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Lifetime.html" title="struct syntax::ast::Lifetime">Lifetime</a></h3></section><section id="impl-AstNode-for-LifetimeArg" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3785-3805">Source</a><a href="#impl-AstNode-for-LifetimeArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.LifetimeArg.html" title="struct syntax::ast::LifetimeArg">LifetimeArg</a></h3></section><section id="impl-AstNode-for-LifetimeParam" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3806-3826">Source</a><a href="#impl-AstNode-for-LifetimeParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.LifetimeParam.html" title="struct syntax::ast::LifetimeParam">LifetimeParam</a></h3></section><section id="impl-AstNode-for-Literal" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3827-3847">Source</a><a href="#impl-AstNode-for-Literal" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Literal.html" title="struct syntax::ast::Literal">Literal</a></h3></section><section id="impl-AstNode-for-LiteralPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3848-3868">Source</a><a href="#impl-AstNode-for-LiteralPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.LiteralPat.html" title="struct syntax::ast::LiteralPat">LiteralPat</a></h3></section><section id="impl-AstNode-for-LoopExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3869-3889">Source</a><a href="#impl-AstNode-for-LoopExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.LoopExpr.html" title="struct syntax::ast::LoopExpr">LoopExpr</a></h3></section><section id="impl-AstNode-for-MacroCall" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3890-3910">Source</a><a href="#impl-AstNode-for-MacroCall" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MacroCall.html" title="struct syntax::ast::MacroCall">MacroCall</a></h3></section><section id="impl-AstNode-for-MacroDef" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3911-3931">Source</a><a href="#impl-AstNode-for-MacroDef" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MacroDef.html" title="struct syntax::ast::MacroDef">MacroDef</a></h3></section><section id="impl-AstNode-for-MacroExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3932-3952">Source</a><a href="#impl-AstNode-for-MacroExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MacroExpr.html" title="struct syntax::ast::MacroExpr">MacroExpr</a></h3></section><section id="impl-AstNode-for-MacroItems" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3953-3973">Source</a><a href="#impl-AstNode-for-MacroItems" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MacroItems.html" title="struct syntax::ast::MacroItems">MacroItems</a></h3></section><section id="impl-AstNode-for-MacroPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3974-3994">Source</a><a href="#impl-AstNode-for-MacroPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MacroPat.html" title="struct syntax::ast::MacroPat">MacroPat</a></h3></section><section id="impl-AstNode-for-MacroRules" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3995-4015">Source</a><a href="#impl-AstNode-for-MacroRules" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MacroRules.html" title="struct syntax::ast::MacroRules">MacroRules</a></h3></section><section id="impl-AstNode-for-MacroStmts" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4016-4036">Source</a><a href="#impl-AstNode-for-MacroStmts" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MacroStmts.html" title="struct syntax::ast::MacroStmts">MacroStmts</a></h3></section><section id="impl-AstNode-for-MacroType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4037-4057">Source</a><a href="#impl-AstNode-for-MacroType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MacroType.html" title="struct syntax::ast::MacroType">MacroType</a></h3></section><section id="impl-AstNode-for-MatchArm" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4058-4078">Source</a><a href="#impl-AstNode-for-MatchArm" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MatchArm.html" title="struct syntax::ast::MatchArm">MatchArm</a></h3></section><section id="impl-AstNode-for-MatchArmList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4079-4099">Source</a><a href="#impl-AstNode-for-MatchArmList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MatchArmList.html" title="struct syntax::ast::MatchArmList">MatchArmList</a></h3></section><section id="impl-AstNode-for-MatchExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4100-4120">Source</a><a href="#impl-AstNode-for-MatchExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MatchExpr.html" title="struct syntax::ast::MatchExpr">MatchExpr</a></h3></section><section id="impl-AstNode-for-MatchGuard" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4121-4141">Source</a><a href="#impl-AstNode-for-MatchGuard" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MatchGuard.html" title="struct syntax::ast::MatchGuard">MatchGuard</a></h3></section><section id="impl-AstNode-for-Meta" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4142-4162">Source</a><a href="#impl-AstNode-for-Meta" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Meta.html" title="struct syntax::ast::Meta">Meta</a></h3></section><section id="impl-AstNode-for-MethodCallExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4163-4183">Source</a><a href="#impl-AstNode-for-MethodCallExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.MethodCallExpr.html" title="struct syntax::ast::MethodCallExpr">MethodCallExpr</a></h3></section><section id="impl-AstNode-for-Module" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4184-4204">Source</a><a href="#impl-AstNode-for-Module" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Module.html" title="struct syntax::ast::Module">Module</a></h3></section><section id="impl-AstNode-for-Name" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4205-4225">Source</a><a href="#impl-AstNode-for-Name" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Name.html" title="struct syntax::ast::Name">Name</a></h3></section><section id="impl-AstNode-for-NameRef" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4226-4246">Source</a><a href="#impl-AstNode-for-NameRef" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.NameRef.html" title="struct syntax::ast::NameRef">NameRef</a></h3></section><section id="impl-AstNode-for-NeverType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4247-4267">Source</a><a href="#impl-AstNode-for-NeverType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.NeverType.html" title="struct syntax::ast::NeverType">NeverType</a></h3></section><section id="impl-AstNode-for-OffsetOfExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4268-4288">Source</a><a href="#impl-AstNode-for-OffsetOfExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.OffsetOfExpr.html" title="struct syntax::ast::OffsetOfExpr">OffsetOfExpr</a></h3></section><section id="impl-AstNode-for-OrPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4289-4309">Source</a><a href="#impl-AstNode-for-OrPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.OrPat.html" title="struct syntax::ast::OrPat">OrPat</a></h3></section><section id="impl-AstNode-for-Param" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4310-4330">Source</a><a href="#impl-AstNode-for-Param" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Param.html" title="struct syntax::ast::Param">Param</a></h3></section><section id="impl-AstNode-for-ParamList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4331-4351">Source</a><a href="#impl-AstNode-for-ParamList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ParamList.html" title="struct syntax::ast::ParamList">ParamList</a></h3></section><section id="impl-AstNode-for-ParenExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4352-4372">Source</a><a href="#impl-AstNode-for-ParenExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ParenExpr.html" title="struct syntax::ast::ParenExpr">ParenExpr</a></h3></section><section id="impl-AstNode-for-ParenPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4373-4393">Source</a><a href="#impl-AstNode-for-ParenPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ParenPat.html" title="struct syntax::ast::ParenPat">ParenPat</a></h3></section><section id="impl-AstNode-for-ParenType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4394-4414">Source</a><a href="#impl-AstNode-for-ParenType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ParenType.html" title="struct syntax::ast::ParenType">ParenType</a></h3></section><section id="impl-AstNode-for-ParenthesizedArgList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4415-4435">Source</a><a href="#impl-AstNode-for-ParenthesizedArgList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ParenthesizedArgList.html" title="struct syntax::ast::ParenthesizedArgList">ParenthesizedArgList</a></h3></section><section id="impl-AstNode-for-Path" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4436-4456">Source</a><a href="#impl-AstNode-for-Path" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Path.html" title="struct syntax::ast::Path">Path</a></h3></section><section id="impl-AstNode-for-PathExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4457-4477">Source</a><a href="#impl-AstNode-for-PathExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.PathExpr.html" title="struct syntax::ast::PathExpr">PathExpr</a></h3></section><section id="impl-AstNode-for-PathPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4478-4498">Source</a><a href="#impl-AstNode-for-PathPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.PathPat.html" title="struct syntax::ast::PathPat">PathPat</a></h3></section><section id="impl-AstNode-for-PathSegment" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4499-4519">Source</a><a href="#impl-AstNode-for-PathSegment" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.PathSegment.html" title="struct syntax::ast::PathSegment">PathSegment</a></h3></section><section id="impl-AstNode-for-PathType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4520-4540">Source</a><a href="#impl-AstNode-for-PathType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.PathType.html" title="struct syntax::ast::PathType">PathType</a></h3></section><section id="impl-AstNode-for-PrefixExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4541-4561">Source</a><a href="#impl-AstNode-for-PrefixExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.PrefixExpr.html" title="struct syntax::ast::PrefixExpr">PrefixExpr</a></h3></section><section id="impl-AstNode-for-PtrType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4562-4582">Source</a><a href="#impl-AstNode-for-PtrType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.PtrType.html" title="struct syntax::ast::PtrType">PtrType</a></h3></section><section id="impl-AstNode-for-RangeExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4583-4603">Source</a><a href="#impl-AstNode-for-RangeExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RangeExpr.html" title="struct syntax::ast::RangeExpr">RangeExpr</a></h3></section><section id="impl-AstNode-for-RangePat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4604-4624">Source</a><a href="#impl-AstNode-for-RangePat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RangePat.html" title="struct syntax::ast::RangePat">RangePat</a></h3></section><section id="impl-AstNode-for-RecordExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4625-4645">Source</a><a href="#impl-AstNode-for-RecordExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RecordExpr.html" title="struct syntax::ast::RecordExpr">RecordExpr</a></h3></section><section id="impl-AstNode-for-RecordExprField" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4646-4666">Source</a><a href="#impl-AstNode-for-RecordExprField" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RecordExprField.html" title="struct syntax::ast::RecordExprField">RecordExprField</a></h3></section><section id="impl-AstNode-for-RecordExprFieldList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4667-4687">Source</a><a href="#impl-AstNode-for-RecordExprFieldList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RecordExprFieldList.html" title="struct syntax::ast::RecordExprFieldList">RecordExprFieldList</a></h3></section><section id="impl-AstNode-for-RecordField" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4688-4708">Source</a><a href="#impl-AstNode-for-RecordField" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RecordField.html" title="struct syntax::ast::RecordField">RecordField</a></h3></section><section id="impl-AstNode-for-RecordFieldList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4709-4729">Source</a><a href="#impl-AstNode-for-RecordFieldList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RecordFieldList.html" title="struct syntax::ast::RecordFieldList">RecordFieldList</a></h3></section><section id="impl-AstNode-for-RecordPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4730-4750">Source</a><a href="#impl-AstNode-for-RecordPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RecordPat.html" title="struct syntax::ast::RecordPat">RecordPat</a></h3></section><section id="impl-AstNode-for-RecordPatField" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4751-4771">Source</a><a href="#impl-AstNode-for-RecordPatField" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RecordPatField.html" title="struct syntax::ast::RecordPatField">RecordPatField</a></h3></section><section id="impl-AstNode-for-RecordPatFieldList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4772-4792">Source</a><a href="#impl-AstNode-for-RecordPatFieldList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RecordPatFieldList.html" title="struct syntax::ast::RecordPatFieldList">RecordPatFieldList</a></h3></section><section id="impl-AstNode-for-RefExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4793-4813">Source</a><a href="#impl-AstNode-for-RefExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RefExpr.html" title="struct syntax::ast::RefExpr">RefExpr</a></h3></section><section id="impl-AstNode-for-RefPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4814-4834">Source</a><a href="#impl-AstNode-for-RefPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RefPat.html" title="struct syntax::ast::RefPat">RefPat</a></h3></section><section id="impl-AstNode-for-RefType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4835-4855">Source</a><a href="#impl-AstNode-for-RefType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RefType.html" title="struct syntax::ast::RefType">RefType</a></h3></section><section id="impl-AstNode-for-Rename" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4856-4876">Source</a><a href="#impl-AstNode-for-Rename" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Rename.html" title="struct syntax::ast::Rename">Rename</a></h3></section><section id="impl-AstNode-for-RestPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4877-4897">Source</a><a href="#impl-AstNode-for-RestPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RestPat.html" title="struct syntax::ast::RestPat">RestPat</a></h3></section><section id="impl-AstNode-for-RetType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4898-4918">Source</a><a href="#impl-AstNode-for-RetType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.RetType.html" title="struct syntax::ast::RetType">RetType</a></h3></section><section id="impl-AstNode-for-ReturnExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4919-4939">Source</a><a href="#impl-AstNode-for-ReturnExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ReturnExpr.html" title="struct syntax::ast::ReturnExpr">ReturnExpr</a></h3></section><section id="impl-AstNode-for-ReturnTypeSyntax" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4940-4960">Source</a><a href="#impl-AstNode-for-ReturnTypeSyntax" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.ReturnTypeSyntax.html" title="struct syntax::ast::ReturnTypeSyntax">ReturnTypeSyntax</a></h3></section><section id="impl-AstNode-for-SelfParam" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4961-4981">Source</a><a href="#impl-AstNode-for-SelfParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.SelfParam.html" title="struct syntax::ast::SelfParam">SelfParam</a></h3></section><section id="impl-AstNode-for-SlicePat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#4982-5002">Source</a><a href="#impl-AstNode-for-SlicePat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.SlicePat.html" title="struct syntax::ast::SlicePat">SlicePat</a></h3></section><section id="impl-AstNode-for-SliceType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5003-5023">Source</a><a href="#impl-AstNode-for-SliceType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.SliceType.html" title="struct syntax::ast::SliceType">SliceType</a></h3></section><section id="impl-AstNode-for-SourceFile" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5024-5044">Source</a><a href="#impl-AstNode-for-SourceFile" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.SourceFile.html" title="struct syntax::ast::SourceFile">SourceFile</a></h3></section><section id="impl-AstNode-for-Static" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5045-5065">Source</a><a href="#impl-AstNode-for-Static" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Static.html" title="struct syntax::ast::Static">Static</a></h3></section><section id="impl-AstNode-for-StmtList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5066-5086">Source</a><a href="#impl-AstNode-for-StmtList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.StmtList.html" title="struct syntax::ast::StmtList">StmtList</a></h3></section><section id="impl-AstNode-for-Struct" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5087-5107">Source</a><a href="#impl-AstNode-for-Struct" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Struct.html" title="struct syntax::ast::Struct">Struct</a></h3></section><section id="impl-AstNode-for-TokenTree" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5108-5128">Source</a><a href="#impl-AstNode-for-TokenTree" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TokenTree.html" title="struct syntax::ast::TokenTree">TokenTree</a></h3></section><section id="impl-AstNode-for-Trait" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5129-5149">Source</a><a href="#impl-AstNode-for-Trait" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Trait.html" title="struct syntax::ast::Trait">Trait</a></h3></section><section id="impl-AstNode-for-TraitAlias" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5150-5170">Source</a><a href="#impl-AstNode-for-TraitAlias" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TraitAlias.html" title="struct syntax::ast::TraitAlias">TraitAlias</a></h3></section><section id="impl-AstNode-for-TryExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5171-5191">Source</a><a href="#impl-AstNode-for-TryExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TryExpr.html" title="struct syntax::ast::TryExpr">TryExpr</a></h3></section><section id="impl-AstNode-for-TupleExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5192-5212">Source</a><a href="#impl-AstNode-for-TupleExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TupleExpr.html" title="struct syntax::ast::TupleExpr">TupleExpr</a></h3></section><section id="impl-AstNode-for-TupleField" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5213-5233">Source</a><a href="#impl-AstNode-for-TupleField" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TupleField.html" title="struct syntax::ast::TupleField">TupleField</a></h3></section><section id="impl-AstNode-for-TupleFieldList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5234-5254">Source</a><a href="#impl-AstNode-for-TupleFieldList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TupleFieldList.html" title="struct syntax::ast::TupleFieldList">TupleFieldList</a></h3></section><section id="impl-AstNode-for-TuplePat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5255-5275">Source</a><a href="#impl-AstNode-for-TuplePat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TuplePat.html" title="struct syntax::ast::TuplePat">TuplePat</a></h3></section><section id="impl-AstNode-for-TupleStructPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5276-5296">Source</a><a href="#impl-AstNode-for-TupleStructPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TupleStructPat.html" title="struct syntax::ast::TupleStructPat">TupleStructPat</a></h3></section><section id="impl-AstNode-for-TupleType" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5297-5317">Source</a><a href="#impl-AstNode-for-TupleType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TupleType.html" title="struct syntax::ast::TupleType">TupleType</a></h3></section><section id="impl-AstNode-for-TypeAlias" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5318-5338">Source</a><a href="#impl-AstNode-for-TypeAlias" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TypeAlias.html" title="struct syntax::ast::TypeAlias">TypeAlias</a></h3></section><section id="impl-AstNode-for-TypeArg" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5339-5359">Source</a><a href="#impl-AstNode-for-TypeArg" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TypeArg.html" title="struct syntax::ast::TypeArg">TypeArg</a></h3></section><section id="impl-AstNode-for-TypeBound" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5360-5380">Source</a><a href="#impl-AstNode-for-TypeBound" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TypeBound.html" title="struct syntax::ast::TypeBound">TypeBound</a></h3></section><section id="impl-AstNode-for-TypeBoundList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5381-5401">Source</a><a href="#impl-AstNode-for-TypeBoundList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TypeBoundList.html" title="struct syntax::ast::TypeBoundList">TypeBoundList</a></h3></section><section id="impl-AstNode-for-TypeParam" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5402-5422">Source</a><a href="#impl-AstNode-for-TypeParam" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.TypeParam.html" title="struct syntax::ast::TypeParam">TypeParam</a></h3></section><section id="impl-AstNode-for-UnderscoreExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5423-5443">Source</a><a href="#impl-AstNode-for-UnderscoreExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.UnderscoreExpr.html" title="struct syntax::ast::UnderscoreExpr">UnderscoreExpr</a></h3></section><section id="impl-AstNode-for-Union" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5444-5464">Source</a><a href="#impl-AstNode-for-Union" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Union.html" title="struct syntax::ast::Union">Union</a></h3></section><section id="impl-AstNode-for-Use" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5465-5485">Source</a><a href="#impl-AstNode-for-Use" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Use.html" title="struct syntax::ast::Use">Use</a></h3></section><section id="impl-AstNode-for-UseBoundGenericArgs" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5486-5506">Source</a><a href="#impl-AstNode-for-UseBoundGenericArgs" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.UseBoundGenericArgs.html" title="struct syntax::ast::UseBoundGenericArgs">UseBoundGenericArgs</a></h3></section><section id="impl-AstNode-for-UseTree" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5507-5527">Source</a><a href="#impl-AstNode-for-UseTree" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.UseTree.html" title="struct syntax::ast::UseTree">UseTree</a></h3></section><section id="impl-AstNode-for-UseTreeList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5528-5548">Source</a><a href="#impl-AstNode-for-UseTreeList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.UseTreeList.html" title="struct syntax::ast::UseTreeList">UseTreeList</a></h3></section><section id="impl-AstNode-for-Variant" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5549-5569">Source</a><a href="#impl-AstNode-for-Variant" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Variant.html" title="struct syntax::ast::Variant">Variant</a></h3></section><section id="impl-AstNode-for-VariantList" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5570-5590">Source</a><a href="#impl-AstNode-for-VariantList" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.VariantList.html" title="struct syntax::ast::VariantList">VariantList</a></h3></section><section id="impl-AstNode-for-Visibility" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5591-5611">Source</a><a href="#impl-AstNode-for-Visibility" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.Visibility.html" title="struct syntax::ast::Visibility">Visibility</a></h3></section><section id="impl-AstNode-for-WhereClause" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5612-5632">Source</a><a href="#impl-AstNode-for-WhereClause" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.WhereClause.html" title="struct syntax::ast::WhereClause">WhereClause</a></h3></section><section id="impl-AstNode-for-WherePred" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5633-5653">Source</a><a href="#impl-AstNode-for-WherePred" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.WherePred.html" title="struct syntax::ast::WherePred">WherePred</a></h3></section><section id="impl-AstNode-for-WhileExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5654-5674">Source</a><a href="#impl-AstNode-for-WhileExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.WhileExpr.html" title="struct syntax::ast::WhileExpr">WhileExpr</a></h3></section><section id="impl-AstNode-for-WildcardPat" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5675-5695">Source</a><a href="#impl-AstNode-for-WildcardPat" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.WildcardPat.html" title="struct syntax::ast::WildcardPat">WildcardPat</a></h3></section><section id="impl-AstNode-for-YeetExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5696-5716">Source</a><a href="#impl-AstNode-for-YeetExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.YeetExpr.html" title="struct syntax::ast::YeetExpr">YeetExpr</a></h3></section><section id="impl-AstNode-for-YieldExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#5717-5737">Source</a><a href="#impl-AstNode-for-YieldExpr" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.AstNode.html" title="trait syntax::ast::AstNode">AstNode</a> for <a class="struct" href="struct.YieldExpr.html" title="struct syntax::ast::YieldExpr">YieldExpr</a></h3></section></div><script src="../../trait.impl/syntax/ast/trait.AstNode.js" data-ignore-extern-crates="either" async></script></section></div></main></body></html>