MCPcopy Create free account
hub / github.com/clockworklabs/SpacetimeDB / iter_mut

Method iter_mut

crates/data-structures/src/error_stream.rs:159–161  ·  view source on GitHub ↗

Returns a mutable iterator over the errors in the stream.

(&mut self)

Source from the content-addressed store, hash-verified

157
158 /// Returns a mutable iterator over the errors in the stream.
159 pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut E> {
160 self.0.iter_mut()
161 }
162
163 /// Returns an iterator over the errors in the stream, consuming the stream.
164 pub fn drain(&mut self) -> impl Iterator<Item = E> + '_ {

Calls

no outgoing calls