difftastic/rustdoc/tree_sitter/trait.StreamingIteratorMut....

73 lines
40 KiB
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!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="An interface for dealing with mutable streaming iterators."><title>StreamingIteratorMut in tree_sitter - 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="tree_sitter" 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="../tree_sitter/index.html">tree_sitter</a><span class="version">0.25.10</span></h2></div><h2 class="location"><a href="#">StreamingIteratorMut</a></h2><div class="sidebar-elems"><section><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.get_mut">get_mut</a></li></ul><h3><a href="#provided-methods">Provided Methods</a></h3><ul class="block"><li><a href="#method.flatten">flatten</a></li><li><a href="#method.fold_mut">fold_mut</a></li><li><a href="#method.for_each_mut">for_each_mut</a></li><li><a href="#method.map_deref_mut">map_deref_mut</a></li><li><a href="#method.next_mut">next_mut</a></li></ul><h3><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul class="block"><li><a href="#impl-StreamingIteratorMut-for-%26mut+I">&amp;&#x27;a mut I</a></li></ul><h3><a href="#implementors">Implementors</a></h3></section><h2><a href="index.html">In crate tree_sitter</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="../tree_sitter/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">tree_sitter</a>::<wbr><a class="trait" href="#">StreamingIteratorMut</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/streaming_iterator/lib.rs.html#559">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 StreamingIteratorMut: <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a> {
// Required method
fn <a href="#tymethod.get_mut" class="fn">get_mut</a>(&amp;mut self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>&gt;;
// Provided methods
fn <a href="#method.next_mut" class="fn">next_mut</a>(&amp;mut self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>&gt; { ... }
<span class="item-spacer"></span> fn <a href="#method.fold_mut" class="fn">fold_mut</a>&lt;B, F&gt;(self, init: B, f: F) -&gt; B
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(B, &amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; B</span> { ... }
<span class="item-spacer"></span> fn <a href="#method.for_each_mut" class="fn">for_each_mut</a>&lt;F&gt;(self, f: F)
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>)</span> { ... }
<span class="item-spacer"></span> fn <a href="#method.map_deref_mut" class="fn">map_deref_mut</a>&lt;B, F&gt;(self, f: F) -&gt; <a class="struct" href="../streaming_iterator/struct.MapDerefMut.html" title="struct streaming_iterator::MapDerefMut">MapDerefMut</a>&lt;Self, F&gt;
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; B</span> { ... }
<span class="item-spacer"></span> fn <a href="#method.flatten" class="fn">flatten</a>(self) -&gt; <a class="struct" href="../streaming_iterator/struct.Flatten.html" title="struct streaming_iterator::Flatten">Flatten</a>&lt;Self&gt;
<span class="where">where Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>: <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a></span> { ... }
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>An interface for dealing with mutable streaming iterators.</p>
</div></details><h2 id="required-methods" class="section-header">Required Methods<a href="#required-methods" class="anchor">§</a></h2><div class="methods"><details class="toggle method-toggle" open><summary><section id="tymethod.get_mut" class="method"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#566">source</a><h4 class="code-header">fn <a href="#tymethod.get_mut" class="fn">get_mut</a>(&amp;mut self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>&gt;</h4></section></summary><div class="docblock"><p>Returns a mutable reference to the current element of the iterator.</p>
<p>The behavior of calling this method before <code>advance</code> has been called is unspecified.</p>
<p>Modifications through this reference may also have an unspecified effect on further
iterator advancement, but implementations are encouraged to document this.</p>
</div></details></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.next_mut" class="method"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#575">source</a><h4 class="code-header">fn <a href="#method.next_mut" class="fn">next_mut</a>(&amp;mut self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>&gt;</h4></section></summary><div class="docblock"><p>Advances the iterator and returns the next mutable value.</p>
<p>The behavior of calling this method after the end of the iterator has been reached is
unspecified.</p>
<p>The default implementation simply calls <code>advance</code> followed by <code>get_mut</code>.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.fold_mut" class="method"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#582-585">source</a><h4 class="code-header">fn <a href="#method.fold_mut" class="fn">fold_mut</a>&lt;B, F&gt;(self, init: B, f: F) -&gt; B<div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(B, &amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; B,</div></h4></section></summary><div class="docblock"><p>Reduces the iterators mutable elements to a single, final value.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.for_each_mut" class="method"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#596-599">source</a><h4 class="code-header">fn <a href="#method.for_each_mut" class="fn">for_each_mut</a>&lt;F&gt;(self, f: F)<div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>),</div></h4></section></summary><div class="docblock"><p>Calls a closure on each mutable element of an iterator.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.map_deref_mut" class="method"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#607-610">source</a><h4 class="code-header">fn <a href="#method.map_deref_mut" class="fn">map_deref_mut</a>&lt;B, F&gt;(self, f: F) -&gt; <a class="struct" href="../streaming_iterator/struct.MapDerefMut.html" title="struct streaming_iterator::MapDerefMut">MapDerefMut</a>&lt;Self, F&gt;<div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;mut Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; B,</div></h4></section></summary><div class="docblock"><p>Creates a regular, non-streaming iterator which transforms mutable elements
of this iterator by passing them to a closure.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.flatten" class="method"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#617-620">source</a><h4 class="code-header">fn <a href="#method.flatten" class="fn">flatten</a>(self) -&gt; <a class="struct" href="../streaming_iterator/struct.Flatten.html" title="struct streaming_iterator::Flatten">Flatten</a>&lt;Self&gt;<div class="where">where
Self: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>: <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>,</div></h4></section></summary><div class="docblock"><p>Creates an iterator which flattens nested streaming iterators.</p>
</div></details></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-StreamingIteratorMut-for-%26mut+I" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#629-631">source</a><a href="#impl-StreamingIteratorMut-for-%26mut+I" class="anchor">§</a><h3 class="code-header">impl&lt;'a, I&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;'a mut I</a><div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> + ?<a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><section id="method.get_mut" class="method trait-impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#634">source</a><a href="#method.get_mut" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.get_mut" class="fn">get_mut</a>(&amp;mut self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&amp;mut &lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;'a mut I</a> as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>&gt;</h4></section><section id="method.next_mut-1" class="method trait-impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#639">source</a><a href="#method.next_mut-1" class="anchor">§</a><h4 class="code-header">fn <a href="#method.next_mut" class="fn">next_mut</a>(&amp;mut self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&amp;mut &lt;<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;'a mut I</a> as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>&gt;</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-StreamingIteratorMut-for-ConvertMut%3C'a,+I,+T%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#433-435">source</a><a href="#impl-StreamingIteratorMut-for-ConvertMut%3C'a,+I,+T%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'a, I, T&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.ConvertMut.html" title="struct streaming_iterator::sources::ConvertMut">ConvertMut</a>&lt;'a, I, T&gt;<div class="where">where
I: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a>&lt;Item = <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.reference.html">&amp;'a mut T</a>&gt;,
T: ?<a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-QueryCaptures%3C'query,+'tree,+T,+I%3E" class="impl"><a class="src rightside" href="../src/tree_sitter/lib.rs.html#3515-3521">source</a><a href="#impl-StreamingIteratorMut-for-QueryCaptures%3C'query,+'tree,+T,+I%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'query, 'tree: 'query, T: <a class="trait" href="trait.TextProvider.html" title="trait tree_sitter::TextProvider">TextProvider</a>&lt;I&gt;, I: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.AsRef.html" title="trait core::convert::AsRef">AsRef</a>&lt;[<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.u8.html">u8</a>]&gt;&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.QueryCaptures.html" title="struct tree_sitter::QueryCaptures">QueryCaptures</a>&lt;'query, 'tree, T, I&gt;</h3></section><section id="impl-StreamingIteratorMut-for-QueryMatches%3C'query,+'tree,+T,+I%3E" class="impl"><a class="src rightside" href="../src/tree_sitter/lib.rs.html#3470-3476">source</a><a href="#impl-StreamingIteratorMut-for-QueryMatches%3C'query,+'tree,+T,+I%3E" class="anchor">§</a><h3 class="code-header">impl&lt;'query, 'tree: 'query, T: <a class="trait" href="trait.TextProvider.html" title="trait tree_sitter::TextProvider">TextProvider</a>&lt;I&gt;, I: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/convert/trait.AsRef.html" title="trait core::convert::AsRef">AsRef</a>&lt;[<a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.u8.html">u8</a>]&gt;&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.QueryMatches.html" title="struct tree_sitter::QueryMatches">QueryMatches</a>&lt;'query, 'tree, T, I&gt;</h3></section><section id="impl-StreamingIteratorMut-for-Chain%3CA,+B%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#821-824">source</a><a href="#impl-StreamingIteratorMut-for-Chain%3CA,+B%3E" class="anchor">§</a><h3 class="code-header">impl&lt;A, B&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Chain.html" title="struct streaming_iterator::Chain">Chain</a>&lt;A, B&gt;<div class="where">where
A: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,
B: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>&lt;Item = &lt;A as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>&gt;,</div></h3></section><section id="impl-StreamingIteratorMut-for-Convert%3CI%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#267-269">source</a><a href="#impl-StreamingIteratorMut-for-Convert%3CI%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.Convert.html" title="struct streaming_iterator::sources::Convert">Convert</a>&lt;I&gt;<div class="where">where
I: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-Flatten%3CI%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#1408-1411">source</a><a href="#impl-StreamingIteratorMut-for-Flatten%3CI%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Flatten.html" title="struct streaming_iterator::Flatten">Flatten</a>&lt;I&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,
&lt;I as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-Fuse%3CI%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#1605-1607">source</a><a href="#impl-StreamingIteratorMut-for-Fuse%3CI%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Fuse.html" title="struct streaming_iterator::Fuse">Fuse</a>&lt;I&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-Rev%3CI%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#2437-2439">source</a><a href="#impl-StreamingIteratorMut-for-Rev%3CI%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Rev.html" title="struct streaming_iterator::Rev">Rev</a>&lt;I&gt;<div class="where">where
I: <a class="trait" href="../streaming_iterator/trait.DoubleEndedStreamingIteratorMut.html" title="trait streaming_iterator::DoubleEndedStreamingIteratorMut">DoubleEndedStreamingIteratorMut</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-Skip%3CI%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#2117-2119">source</a><a href="#impl-StreamingIteratorMut-for-Skip%3CI%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Skip.html" title="struct streaming_iterator::Skip">Skip</a>&lt;I&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-Take%3CI%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#2269-2271">source</a><a href="#impl-StreamingIteratorMut-for-Take%3CI%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Take.html" title="struct streaming_iterator::Take">Take</a>&lt;I&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-FilterMap%3CI,+B,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#1223-1226">source</a><a href="#impl-StreamingIteratorMut-for-FilterMap%3CI,+B,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I, B, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.FilterMap.html" title="struct streaming_iterator::FilterMap">FilterMap</a>&lt;I, B, F&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;&lt;I as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;B&gt;,</div></h3></section><section id="impl-StreamingIteratorMut-for-Map%3CI,+B,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#1806-1809">source</a><a href="#impl-StreamingIteratorMut-for-Map%3CI,+B,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I, B, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Map.html" title="struct streaming_iterator::Map">Map</a>&lt;I, B, F&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;&lt;I as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; B,</div></h3></section><section id="impl-StreamingIteratorMut-for-Filter%3CI,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#1074-1077">source</a><a href="#impl-StreamingIteratorMut-for-Filter%3CI,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Filter.html" title="struct streaming_iterator::Filter">Filter</a>&lt;I, F&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;&lt;I as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-Inspect%3CI,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#1702-1705">source</a><a href="#impl-StreamingIteratorMut-for-Inspect%3CI,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.Inspect.html" title="struct streaming_iterator::Inspect">Inspect</a>&lt;I, F&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;&lt;I as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>),</div></h3></section><section id="impl-StreamingIteratorMut-for-SkipWhile%3CI,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#2199-2202">source</a><a href="#impl-StreamingIteratorMut-for-SkipWhile%3CI,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.SkipWhile.html" title="struct streaming_iterator::SkipWhile">SkipWhile</a>&lt;I, F&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;&lt;I as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-TakeWhile%3CI,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#2354-2357">source</a><a href="#impl-StreamingIteratorMut-for-TakeWhile%3CI,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.TakeWhile.html" title="struct streaming_iterator::TakeWhile">TakeWhile</a>&lt;I, F&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;&lt;I as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/std/primitive.bool.html">bool</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-FlatMap%3CI,+J,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/lib.rs.html#1328-1332">source</a><a href="#impl-StreamingIteratorMut-for-FlatMap%3CI,+J,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;I, J, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/struct.FlatMap.html" title="struct streaming_iterator::FlatMap">FlatMap</a>&lt;I, J, F&gt;<div class="where">where
I: <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>,
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(&amp;&lt;I as <a class="trait" href="trait.StreamingIterator.html" title="trait tree_sitter::StreamingIterator">StreamingIterator</a>&gt;::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type tree_sitter::StreamingIterator::Item">Item</a>) -&gt; J,
J: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-WindowsMut%3C'_,+T%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/slice.rs.html#121">source</a><a href="#impl-StreamingIteratorMut-for-WindowsMut%3C'_,+T%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/slice/struct.WindowsMut.html" title="struct streaming_iterator::slice::WindowsMut">WindowsMut</a>&lt;'_, T&gt;</h3></section><section id="impl-StreamingIteratorMut-for-Empty%3CT%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#497">source</a><a href="#impl-StreamingIteratorMut-for-Empty%3CT%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.Empty.html" title="struct streaming_iterator::sources::Empty">Empty</a>&lt;T&gt;</h3></section><section id="impl-StreamingIteratorMut-for-Once%3CT%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#572">source</a><a href="#impl-StreamingIteratorMut-for-Once%3CT%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.Once.html" title="struct streaming_iterator::sources::Once">Once</a>&lt;T&gt;</h3></section><section id="impl-StreamingIteratorMut-for-Repeat%3CT%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#655">source</a><a href="#impl-StreamingIteratorMut-for-Repeat%3CT%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.Repeat.html" title="struct streaming_iterator::sources::Repeat">Repeat</a>&lt;T&gt;</h3></section><section id="impl-StreamingIteratorMut-for-FromFn%3CT,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#527">source</a><a href="#impl-StreamingIteratorMut-for-FromFn%3CT,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.FromFn.html" title="struct streaming_iterator::sources::FromFn">FromFn</a>&lt;T, F&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>() -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;T&gt;,</div></h3></section><section id="impl-StreamingIteratorMut-for-OnceWith%3CT,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#615">source</a><a href="#impl-StreamingIteratorMut-for-OnceWith%3CT,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.OnceWith.html" title="struct streaming_iterator::sources::OnceWith">OnceWith</a>&lt;T, F&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>() -&gt; T,</div></h3></section><section id="impl-StreamingIteratorMut-for-RepeatWith%3CT,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#690">source</a><a href="#impl-StreamingIteratorMut-for-RepeatWith%3CT,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.RepeatWith.html" title="struct streaming_iterator::sources::RepeatWith">RepeatWith</a>&lt;T, F&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>() -&gt; T,</div></h3></section><section id="impl-StreamingIteratorMut-for-Successors%3CT,+F%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#738">source</a><a href="#impl-StreamingIteratorMut-for-Successors%3CT,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T, F&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait tree_sitter::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="../streaming_iterator/sources/struct.Successors.html" title="struct streaming_iterator::sources::Successors">Successors</a>&lt;T, F&gt;<div class="where">where
F: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/ops/function/trait.FnMut.html" title="trait core::ops::function::FnMut">FnMut</a>(T) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.76.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;T&gt;,</div></h3></section></div><script src="../trait.impl/streaming_iterator/trait.StreamingIteratorMut.js" data-ignore-extern-crates="streaming_iterator" async></script></section></div></main></body></html>