difftastic/rustdoc/streaming_iterator/trait.StreamingIteratorMut....

68 lines
38 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 streaming_iterator - 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="streaming_iterator" 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="../streaming_iterator/index.html">streaming_iterator</a><span class="version">0.1.9</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 streaming_iterator</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="../streaming_iterator/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">streaming_iterator</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-627">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 streaming_iterator::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 streaming_iterator::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 streaming_iterator::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 streaming_iterator::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 streaming_iterator::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="struct.MapDerefMut.html" title="struct streaming_iterator::MapDerefMut">MapDerefMut</a>&lt;Self, F&gt; <a href="#" class="tooltip" data-notable-ty="MapDerefMut&lt;Self, F&gt;"></a>
<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 streaming_iterator::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="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 streaming_iterator::StreamingIterator::Item">Item</a>: <a class="trait" href="trait.StreamingIterator.html" title="trait streaming_iterator::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 streaming_iterator::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-578">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 streaming_iterator::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-592">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 streaming_iterator::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-602">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 streaming_iterator::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-613">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="struct.MapDerefMut.html" title="struct streaming_iterator::MapDerefMut">MapDerefMut</a>&lt;Self, F&gt; <a href="#" class="tooltip" data-notable-ty="MapDerefMut&lt;Self, F&gt;"></a><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 streaming_iterator::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-626">source</a><h4 class="code-header">fn <a href="#method.flatten" class="fn">flatten</a>(self) -&gt; <a class="struct" href="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 streaming_iterator::StreamingIterator::Item">Item</a>: <a class="trait" href="trait.StreamingIterator.html" title="trait streaming_iterator::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-642">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="primitive" href="https://doc.rust-lang.org/1.76.0/core/primitive.reference.html">&amp;'a mut I</a><div class="where">where
I: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::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-636">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 Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::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-641">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 Self::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::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-453">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: ?<a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.ConvertMut.html" title="struct streaming_iterator::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/core/primitive.reference.html">&amp;'a mut T</a>&gt;,</div></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-853">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a>,
B: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a>&lt;Item = A::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::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-284">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.Convert.html" title="struct streaming_iterator::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-1427">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a>,
I::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::StreamingIterator::Item">Item</a>: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::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-1628">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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-2454">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.Rev.html" title="struct streaming_iterator::Rev">Rev</a>&lt;I&gt;<div class="where">where
I: <a class="trait" href="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-2139">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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-2281">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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-1245">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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;I::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::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-1825">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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;I::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::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-1102">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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;I::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::StreamingIterator::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/core/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-1723">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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;I::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::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-2222">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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;I::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::StreamingIterator::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/core/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-2367">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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;I::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::StreamingIterator::Item">Item</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.76.0/core/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-1353">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="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 streaming_iterator::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;I::<a class="associatedtype" href="trait.StreamingIterator.html#associatedtype.Item" title="type streaming_iterator::StreamingIterator::Item">Item</a>) -&gt; J,
J: <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a>,</div></h3></section><section id="impl-StreamingIteratorMut-for-Empty%3CT%3E" class="impl"><a class="src rightside" href="../src/streaming_iterator/sources.rs.html#497-502">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.Empty.html" title="struct streaming_iterator::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-577">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.Once.html" title="struct streaming_iterator::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-660">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.Repeat.html" title="struct streaming_iterator::Repeat">Repeat</a>&lt;T&gt;</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-134">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 streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.WindowsMut.html" title="struct streaming_iterator::WindowsMut">WindowsMut</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-532">source</a><a href="#impl-StreamingIteratorMut-for-FromFn%3CT,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T, 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;&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.FromFn.html" title="struct streaming_iterator::FromFn">FromFn</a>&lt;T, F&gt;</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-695">source</a><a href="#impl-StreamingIteratorMut-for-RepeatWith%3CT,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T, 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&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.RepeatWith.html" title="struct streaming_iterator::RepeatWith">RepeatWith</a>&lt;T, F&gt;</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-743">source</a><a href="#impl-StreamingIteratorMut-for-Successors%3CT,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T, 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;&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.Successors.html" title="struct streaming_iterator::Successors">Successors</a>&lt;T, F&gt;</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-620">source</a><a href="#impl-StreamingIteratorMut-for-OnceWith%3CT,+F%3E" class="anchor">§</a><h3 class="code-header">impl&lt;T, 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&gt; <a class="trait" href="trait.StreamingIteratorMut.html" title="trait streaming_iterator::StreamingIteratorMut">StreamingIteratorMut</a> for <a class="struct" href="struct.OnceWith.html" title="struct streaming_iterator::OnceWith">OnceWith</a>&lt;T, F&gt;</h3></section></div><script src="../trait.impl/streaming_iterator/trait.StreamingIteratorMut.js" async></script><script type="text/json" id="notable-traits-data">{"MapDerefMut<Self, F>":"<h3>Notable traits for <code><a class=\"struct\" href=\"struct.MapDerefMut.html\" title=\"struct streaming_iterator::MapDerefMut\">MapDerefMut</a>&lt;I, F&gt;</code></h3><pre><code><div class=\"where\">impl&lt;I, B, F&gt; <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> for <a class=\"struct\" href=\"struct.MapDerefMut.html\" title=\"struct streaming_iterator::MapDerefMut\">MapDerefMut</a>&lt;I, F&gt;<div class=\"where\">where\n I: <a class=\"trait\" href=\"trait.StreamingIteratorMut.html\" title=\"trait streaming_iterator::StreamingIteratorMut\">StreamingIteratorMut</a>,\n 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 I::<a class=\"associatedtype\" href=\"trait.StreamingIterator.html#associatedtype.Item\" title=\"type streaming_iterator::StreamingIterator::Item\">Item</a>) -&gt; B,</div></div><div class=\"where\"> type <a href=\"https://doc.rust-lang.org/1.76.0/core/iter/traits/iterator/trait.Iterator.html#associatedtype.Item\" class=\"associatedtype\">Item</a> = B;</div>"}</script></section></div></main></body></html>