| <!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-Italic-81dc35de.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-MediumItalic-ccf7e434.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"href="../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../../static.files/rustdoc-e56847b5.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.91.1 (ed61e7d7e 2025-11-07)" data-channel="1.91.1" data-search-js="search-e256b49e.js" data-stringdex-js="stringdex-c3e638e9.js" data-settings-js="settings-c38705f0.js" ><script src="../../static.files/storage-e2aeef58.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../static.files/main-6dc2a7f3.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-263c88ec.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-eab170b8.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]--><rustdoc-topbar><h2><a href="#">AstNode</a></h2></rustdoc-topbar><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<L, R>">Either<L, R></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" title="Drag to resize sidebar"></div><main><div class="width-limiter"><section id="main-content" class="content"><div class="main-heading"><div class="rustdoc-breadcrumbs"><a href="../index.html">syntax</a>::<wbr><a href="index.html">ast</a></div><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#45-75">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>) -> <a class="primitive" href="https://doc.rust-lang.org/1.91.1/std/primitive.bool.html">bool</a> |
| <span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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>) -> <a class="enum" href="https://doc.rust-lang.org/1.91.1/core/option/enum.Option.html" title="enum core::option::Option">Option</a><Self> |
| <span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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>(&self) -> &<a class="type" href="../type.SyntaxNode.html" title="type syntax::SyntaxNode">SyntaxNode</a>; |
| |
| // Provided methods |
| fn <a href="#method.kind" class="fn">kind</a>() -> <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.91.1/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>(&self) -> Self |
| <span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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>(&self) -> Self |
| <span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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#54-56">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>) -> <a class="primitive" href="https://doc.rust-lang.org/1.91.1/std/primitive.bool.html">bool</a><div class="where">where |
| Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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#58-60">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>) -> <a class="enum" href="https://doc.rust-lang.org/1.91.1/core/option/enum.Option.html" title="enum core::option::Option">Option</a><Self><div class="where">where |
| Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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#62">Source</a><h4 class="code-header">fn <a href="#tymethod.syntax" class="fn">syntax</a>(&self) -> &<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#47-52">Source</a><h4 class="code-header">fn <a href="#method.kind" class="fn">kind</a>() -> <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.91.1/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#63-68">Source</a><h4 class="code-header">fn <a href="#method.clone_for_update" class="fn">clone_for_update</a>(&self) -> Self<div class="where">where |
| Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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#69-74">Source</a><h4 class="code-header">fn <a href="#method.clone_subtree" class="fn">clone_subtree</a>(&self) -> Self<div class="where">where |
| Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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#114-140">Source</a><a href="#impl-AstNode-for-Either%3CL,+R%3E" class="anchor">§</a><h3 class="code-header">impl<L, R> <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><L, R><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#119-124">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>) -> <a class="primitive" href="https://doc.rust-lang.org/1.91.1/std/primitive.bool.html">bool</a><div class="where">where |
| Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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#126-135">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>) -> <a class="enum" href="https://doc.rust-lang.org/1.91.1/core/option/enum.Option.html" title="enum core::option::Option">Option</a><Self><div class="where">where |
| Self: <a class="trait" href="https://doc.rust-lang.org/1.91.1/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#137-139">Source</a><a href="#method.syntax" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.syntax" class="fn">syntax</a>(&self) -> &<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#7193-7214">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#7231-7256">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#7269-7292">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#7309-7332">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#7477-7604">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#7621-7644">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#7653-7672">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#7689-7714">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#7727-7750">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#7819-7889">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#124-142">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#579-599">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#621-639">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#7954-8021">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-Type" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#8090-8151">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#853-879">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#8160-8179">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-VariantDef" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#8192-8213">Source</a><a href="#impl-AstNode-for-VariantDef" 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.VariantDef.html" title="enum syntax::ast::VariantDef">VariantDef</a></h3></section><section id="impl-AstNode-for-Abi" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#2253-2269">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#8215-8224">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#8249-8333">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#8634-8667">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#8764-8775">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#8804-8815">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#8864-8873">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#8902-8911">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#8940-8973">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#9070-9084">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#9125-9155">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#2285-2301">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#2317-2333">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#2349-2365">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#2381-2397">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#2413-2429">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#2445-2461">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#2477-2493">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#2509-2525">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#2541-2557">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#2573-2589">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#2605-2621">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#2637-2653">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#2669-2685">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#2701-2717">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#2733-2749">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#2765-2781">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#2797-2813">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#2829-2845">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#2861-2877">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#2893-2909">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#2925-2941">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#2957-2973">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#2989-3005">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#3021-3037">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#3053-3069">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#3085-3101">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-ClosureExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3117-3133">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#3149-3165">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#3181-3197">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#3213-3229">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#3245-3261">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#3277-3293">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#3309-3325">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#3341-3357">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#3373-3389">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#3405-3421">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#3437-3453">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#3469-3485">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#3501-3517">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#3533-3549">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#3565-3581">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-ForBinder" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3597-3613">Source</a><a href="#impl-AstNode-for-ForBinder" 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.ForBinder.html" title="struct syntax::ast::ForBinder">ForBinder</a></h3></section><section id="impl-AstNode-for-ForExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#3629-3645">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#3661-3677">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#3693-3709">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#3725-3741">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#3757-3773">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#3789-3805">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#3821-3837">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#3853-3869">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#3885-3901">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#3917-3933">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#3949-3965">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#3981-3997">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#4013-4029">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#4045-4061">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#4077-4093">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#4109-4125">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#4141-4157">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#4173-4189">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#4205-4221">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#4237-4253">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#4269-4285">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#4301-4317">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#4333-4349">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#4365-4381">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#4397-4413">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#4429-4445">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#4461-4477">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#4493-4509">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#4525-4541">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#4557-4573">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#4589-4605">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#4621-4637">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#4653-4669">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#4685-4701">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#4717-4733">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#4749-4765">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#4781-4797">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#4813-4829">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#4845-4861">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#4877-4893">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#4909-4925">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#4941-4957">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#4973-4989">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#5005-5021">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#5037-5053">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#5069-5085">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#5101-5117">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#5133-5149">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#5165-5181">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#5197-5213">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#5229-5245">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#5261-5277">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#5293-5309">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#5325-5341">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#5357-5373">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#5389-5405">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#5421-5437">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#5453-5469">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#5485-5501">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#5517-5533">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#5549-5565">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#5581-5597">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#5613-5629">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#5645-5661">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#5677-5693">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#5709-5725">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#5741-5757">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#5773-5789">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#5805-5821">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#5837-5853">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#5869-5885">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#5901-5917">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#5933-5949">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#5965-5981">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#5997-6013">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#6029-6045">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#6061-6077">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#6093-6109">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#6125-6141">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#6157-6173">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#6189-6205">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#6221-6237">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#6253-6269">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-TryExpr" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6285-6301">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#6317-6333">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#6349-6365">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#6381-6397">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#6413-6429">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#6445-6461">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#6477-6493">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#6509-6525">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-TypeAnchor" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6541-6557">Source</a><a href="#impl-AstNode-for-TypeAnchor" 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.TypeAnchor.html" title="struct syntax::ast::TypeAnchor">TypeAnchor</a></h3></section><section id="impl-AstNode-for-TypeArg" class="impl"><a class="src rightside" href="../../src/syntax/ast/generated/nodes.rs.html#6573-6589">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#6605-6621">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#6637-6653">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#6669-6685">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#6701-6717">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#6733-6749">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#6765-6781">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#6797-6813">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#6829-6845">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#6861-6877">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#6893-6909">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#6925-6941">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#6957-6973">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#6989-7005">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#7021-7037">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#7053-7069">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#7085-7101">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#7117-7133">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#7149-7165">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> |