edlang/toml_edit/visit_mut/trait.VisitMut.html

22 lines
16 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>VisitMut in toml_edit::visit_mut - 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="#">VisitMut</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_mut">visit_array_mut</a></li><li><a href="#method.visit_array_of_tables_mut">visit_array_of_tables_mut</a></li><li><a href="#method.visit_boolean_mut">visit_boolean_mut</a></li><li><a href="#method.visit_datetime_mut">visit_datetime_mut</a></li><li><a href="#method.visit_document_mut">visit_document_mut</a></li><li><a href="#method.visit_float_mut">visit_float_mut</a></li><li><a href="#method.visit_inline_table_mut">visit_inline_table_mut</a></li><li><a href="#method.visit_integer_mut">visit_integer_mut</a></li><li><a href="#method.visit_item_mut">visit_item_mut</a></li><li><a href="#method.visit_string_mut">visit_string_mut</a></li><li><a href="#method.visit_table_like_kv_mut">visit_table_like_kv_mut</a></li><li><a href="#method.visit_table_like_mut">visit_table_like_mut</a></li><li><a href="#method.visit_table_mut">visit_table_mut</a></li><li><a href="#method.visit_value_mut">visit_value_mut</a></li></ul><h3><a href="#implementors">Implementors</a></h3></section><h2><a href="index.html">In toml_edit::visit_mut</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_mut</a>::<wbr><a class="trait" href="#">VisitMut</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_mut.rs.html#100-158">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 VisitMut {
<details class="toggle type-contents-toggle"><summary class="hideme"><span>Show 14 methods</span></summary> // Provided methods
fn <a href="#method.visit_document_mut" class="fn">visit_document_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_item_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_table_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_inline_table_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_table_like_mut</a>(&amp;mut self, node: &amp;mut 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_mut" class="fn">visit_table_like_kv_mut</a>(&amp;mut self, key: <a class="struct" href="../struct.KeyMut.html" title="struct toml_edit::KeyMut">KeyMut</a>&lt;'_&gt;, node: &amp;mut <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_mut" class="fn">visit_array_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_array_of_tables_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_value_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_boolean_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_datetime_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_float_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_integer_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="fn">visit_string_mut</a>(&amp;mut self, node: &amp;mut <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_mut">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_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#101-103">source</a><h4 class="code-header">fn <a href="#method.visit_document_mut" class="fn">visit_document_mut</a>(&amp;mut self, node: &amp;mut <a class="struct" href="../struct.Document.html" title="struct toml_edit::Document">Document</a>)</h4></section><section id="method.visit_item_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#105-107">source</a><h4 class="code-header">fn <a href="#method.visit_item_mut" class="fn">visit_item_mut</a>(&amp;mut self, node: &amp;mut <a class="enum" href="../enum.Item.html" title="enum toml_edit::Item">Item</a>)</h4></section><section id="method.visit_table_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#109-111">source</a><h4 class="code-header">fn <a href="#method.visit_table_mut" class="fn">visit_table_mut</a>(&amp;mut self, node: &amp;mut <a class="struct" href="../struct.Table.html" title="struct toml_edit::Table">Table</a>)</h4></section><section id="method.visit_inline_table_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#113-115">source</a><h4 class="code-header">fn <a href="#method.visit_inline_table_mut" class="fn">visit_inline_table_mut</a>(&amp;mut self, node: &amp;mut <a class="struct" href="../struct.InlineTable.html" title="struct toml_edit::InlineTable">InlineTable</a>)</h4></section><details class="toggle method-toggle" open><summary><section id="method.visit_table_like_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#119-121">source</a><h4 class="code-header">fn <a href="#method.visit_table_like_mut" class="fn">visit_table_like_mut</a>(&amp;mut self, node: &amp;mut dyn <a class="trait" href="../trait.TableLike.html" title="trait toml_edit::TableLike">TableLike</a>)</h4></section></summary><div class="docblock"><p><a href="trait.VisitMut.html#method.visit_table_mut"><code>visit_table_mut</code></a> and
<a href="trait.VisitMut.html#method.visit_inline_table_mut"><code>visit_inline_table_mut</code></a> both recurse into this method.</p>
</div></details><section id="method.visit_table_like_kv_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#123-125">source</a><h4 class="code-header">fn <a href="#method.visit_table_like_kv_mut" class="fn">visit_table_like_kv_mut</a>(&amp;mut self, key: <a class="struct" href="../struct.KeyMut.html" title="struct toml_edit::KeyMut">KeyMut</a>&lt;'_&gt;, node: &amp;mut <a class="enum" href="../enum.Item.html" title="enum toml_edit::Item">Item</a>)</h4></section><section id="method.visit_array_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#127-129">source</a><h4 class="code-header">fn <a href="#method.visit_array_mut" class="fn">visit_array_mut</a>(&amp;mut self, node: &amp;mut <a class="struct" href="../struct.Array.html" title="struct toml_edit::Array">Array</a>)</h4></section><section id="method.visit_array_of_tables_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#131-133">source</a><h4 class="code-header">fn <a href="#method.visit_array_of_tables_mut" class="fn">visit_array_of_tables_mut</a>(&amp;mut self, node: &amp;mut <a class="struct" href="../struct.ArrayOfTables.html" title="struct toml_edit::ArrayOfTables">ArrayOfTables</a>)</h4></section><section id="method.visit_value_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#135-137">source</a><h4 class="code-header">fn <a href="#method.visit_value_mut" class="fn">visit_value_mut</a>(&amp;mut self, node: &amp;mut <a class="enum" href="../enum.Value.html" title="enum toml_edit::Value">Value</a>)</h4></section><section id="method.visit_boolean_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#139-141">source</a><h4 class="code-header">fn <a href="#method.visit_boolean_mut" class="fn">visit_boolean_mut</a>(&amp;mut self, node: &amp;mut <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_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#143-145">source</a><h4 class="code-header">fn <a href="#method.visit_datetime_mut" class="fn">visit_datetime_mut</a>(&amp;mut self, node: &amp;mut <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;)</h4></section><section id="method.visit_float_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#147-149">source</a><h4 class="code-header">fn <a href="#method.visit_float_mut" class="fn">visit_float_mut</a>(&amp;mut self, node: &amp;mut <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;)</h4></section><section id="method.visit_integer_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#151-153">source</a><h4 class="code-header">fn <a href="#method.visit_integer_mut" class="fn">visit_integer_mut</a>(&amp;mut self, node: &amp;mut <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;)</h4></section><section id="method.visit_string_mut" class="method"><a class="src rightside" href="../../src/toml_edit/visit_mut.rs.html#155-157">source</a><h4 class="code-header">fn <a href="#method.visit_string_mut" class="fn">visit_string_mut</a>(&amp;mut self, node: &amp;mut <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;)</h4></