edlang/toml_edit/visit/trait.Visit.html

20 lines
15 KiB
HTML
Raw Normal View History

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Document tree traversal to mutate an exclusive borrow of a document tree in-place."><title>Visit in toml_edit::visit - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/FiraSans-Regular-018c141bf0843ffd.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/FiraSans-Medium-8f9a781e4970d388.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2"><link rel="stylesheet" href="../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../static.files/rustdoc-ac92e1bbe349e143.css"><meta name="rustdoc-vars" data-root-path="../../" data-static-root-path="../../static.files/" data-current-crate="toml_edit" data-themes="" data-resource-suffix="" data-rustdoc-version="1.76.0 (07dca489a 2024-02-04)" data-channel="1.76.0" data-search-js="search-2b6ce74ff89ae146.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../../static.files/storage-f2adc0d6ca4d09fb.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../static.files/main-305769736d49e732.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-feafe1bb7466e4bd.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-16x16-8b506e7a72182f1c.png"><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle">&#9776;</button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../toml_edit/index.html">toml_edit</a><span class="version">0.22.6</span></h2></div><h2 class="location"><a href="#">Visit</a></h2><div class="sidebar-elems"><section><h3><a href="#provided-methods">Provided Methods</a></h3><ul class="block"><li><a href="#method.visit_array">visit_array</a></li><li><a href="#method.visit_array_of_tables">visit_array_of_tables</a></li><li><a href="#method.visit_boolean">visit_boolean</a></li><li><a href="#method.visit_datetime">visit_datetime</a></li><li><a href="#method.visit_document">visit_document</a></li><li><a href="#method.visit_float">visit_float</a></li><li><a href="#method.visit_inline_table">visit_inline_table</a></li><li><a href="#method.visit_integer">visit_integer</a></li><li><a href="#method.visit_item">visit_item</a></li><li><a href="#method.visit_string">visit_string</a></li><li><a href="#method.visit_table">visit_table</a></li><li><a href="#method.visit_table_like">visit_table_like</a></li><li><a href="#method.visit_table_like_kv">visit_table_like_kv</a></li><li><a href="#method.visit_value">visit_value</a></li></ul><h3><a href="#implementors">Implementors</a></h3></section><h2><a href="index.html">In toml_edit::visit</a></h2></div></nav><div class="sidebar-resizer"></div>
<main><div class="width-limiter"><nav class="sub"><form class="search-form"><span></span><div id="sidebar-button" tabindex="-1"><a href="../../toml_edit/all.html" title="show sidebar"></a></div><input class="search-input" name="search" aria-label="Run search in the documentation" autocomplete="off" spellcheck="false" placeholder="Click or press S to search, ? for more options…" type="search"><div id="help-button" tabindex="-1"><a href="../../help.html" title="help">?</a></div><div id="settings-menu" tabindex="-1"><a href="../../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../../static.files/wheel-7b819b6101059cd0.svg"></a></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1>Trait <a href="../index.html">toml_edit</a>::<wbr><a href="index.html">visit</a>::<wbr><a class="trait" href="#">Visit</a><button id="copy-path" title="Copy item path to clipboard"><img src="../../static.files/clipboard-7571035ce49a181d.svg" width="19" height="18" alt="Copy item path"></button></h1><span class="out-of-band"><a class="src" href="../../src/toml_edit/visit.rs.html#84-140">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>&#x2212;</span>]</button></span></div><pre class="rust item-decl"><code>pub trait Visit&lt;'doc&gt; {
<details class="toggle type-contents-toggle"><summary class="hideme"><span>Show 14 methods</span></summary> // Provided methods
fn <a href="#method.visit_document" class="fn">visit_document</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Document.html" title="struct toml_edit::Document">Document</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_item" class="fn">visit_item</a>(&amp;mut self, node: &amp;'doc <a class="enum" href="../enum.Item.html" title="enum toml_edit::Item">Item</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_table" class="fn">visit_table</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Table.html" title="struct toml_edit::Table">Table</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_inline_table" class="fn">visit_inline_table</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.InlineTable.html" title="struct toml_edit::InlineTable">InlineTable</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_table_like" class="fn">visit_table_like</a>(&amp;mut self, node: &amp;'doc dyn <a class="trait" href="../trait.TableLike.html" title="trait toml_edit::TableLike">TableLike</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_table_like_kv" class="fn">visit_table_like_kv</a>(&amp;mut self, key: &amp;'doc <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.str.html">str</a>, node: &amp;'doc <a class="enum" href="../enum.Item.html" title="enum toml_edit::Item">Item</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_array" class="fn">visit_array</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Array.html" title="struct toml_edit::Array">Array</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_array_of_tables" class="fn">visit_array_of_tables</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.ArrayOfTables.html" title="struct toml_edit::ArrayOfTables">ArrayOfTables</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_value" class="fn">visit_value</a>(&amp;mut self, node: &amp;'doc <a class="enum" href="../enum.Value.html" title="enum toml_edit::Value">Value</a>) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_boolean" class="fn">visit_boolean</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Formatted.html" title="struct toml_edit::Formatted">Formatted</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a>&gt;) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_datetime" class="fn">visit_datetime</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Formatted.html" title="struct toml_edit::Formatted">Formatted</a>&lt;<a class="struct" href="../struct.Datetime.html" title="struct toml_edit::Datetime">Datetime</a>&gt;) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_float" class="fn">visit_float</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Formatted.html" title="struct toml_edit::Formatted">Formatted</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.f64.html">f64</a>&gt;) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_integer" class="fn">visit_integer</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Formatted.html" title="struct toml_edit::Formatted">Formatted</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.i64.html">i64</a>&gt;) { ... }
<span class="item-spacer"></span> fn <a href="#method.visit_string" class="fn">visit_string</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Formatted.html" title="struct toml_edit::Formatted">Formatted</a>&lt;<a class="struct" href="https://doc.rust-lang.org/1.76.0/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>&gt;) { ... }
</details>}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Document tree traversal to mutate an exclusive borrow of a document tree in-place.</p>
<p>See the <a href="index.html" title="mod toml_edit::visit">module documentation</a> for details.</p>
</div></details><h2 id="provided-methods" class="section-header">Provided Methods<a href="#provided-methods" class="anchor">§</a></h2><div class="methods"><section id="method.visit_document" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#85-87">source</a><h4 class="code-header">fn <a href="#method.visit_document" class="fn">visit_document</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Document.html" title="struct toml_edit::Document">Document</a>)</h4></section><section id="method.visit_item" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#89-91">source</a><h4 class="code-header">fn <a href="#method.visit_item" class="fn">visit_item</a>(&amp;mut self, node: &amp;'doc <a class="enum" href="../enum.Item.html" title="enum toml_edit::Item">Item</a>)</h4></section><section id="method.visit_table" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#93-95">source</a><h4 class="code-header">fn <a href="#method.visit_table" class="fn">visit_table</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Table.html" title="struct toml_edit::Table">Table</a>)</h4></section><section id="method.visit_inline_table" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#97-99">source</a><h4 class="code-header">fn <a href="#method.visit_inline_table" class="fn">visit_inline_table</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.InlineTable.html" title="struct toml_edit::InlineTable">InlineTable</a>)</h4></section><section id="method.visit_table_like" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#101-103">source</a><h4 class="code-header">fn <a href="#method.visit_table_like" class="fn">visit_table_like</a>(&amp;mut self, node: &amp;'doc dyn <a class="trait" href="../trait.TableLike.html" title="trait toml_edit::TableLike">TableLike</a>)</h4></section><section id="method.visit_table_like_kv" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#105-107">source</a><h4 class="code-header">fn <a href="#method.visit_table_like_kv" class="fn">visit_table_like_kv</a>(&amp;mut self, key: &amp;'doc <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.str.html">str</a>, node: &amp;'doc <a class="enum" href="../enum.Item.html" title="enum toml_edit::Item">Item</a>)</h4></section><section id="method.visit_array" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#109-111">source</a><h4 class="code-header">fn <a href="#method.visit_array" class="fn">visit_array</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Array.html" title="struct toml_edit::Array">Array</a>)</h4></section><section id="method.visit_array_of_tables" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#113-115">source</a><h4 class="code-header">fn <a href="#method.visit_array_of_tables" class="fn">visit_array_of_tables</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.ArrayOfTables.html" title="struct toml_edit::ArrayOfTables">ArrayOfTables</a>)</h4></section><section id="method.visit_value" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#117-119">source</a><h4 class="code-header">fn <a href="#method.visit_value" class="fn">visit_value</a>(&amp;mut self, node: &amp;'doc <a class="enum" href="../enum.Value.html" title="enum toml_edit::Value">Value</a>)</h4></section><section id="method.visit_boolean" class="method"><a class="src rightside" href="../../src/toml_edit/visit.rs.html#121-123">source</a><h4 class="code-header">fn <a href="#method.visit_boolean" class="fn">visit_boolean</a>(&amp;mut self, node: &amp;'doc <a class="struct" href="../struct.Formatted.html" title="struct toml_edit::Formatted">Formatted</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a>&gt;)</h4></section><section id="method.visit_datetime" class="method"><a class="src rightside" href="..