Returns a mutable iterator over the errors in the stream.
(&mut self)
| 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> + '_ { |
no outgoing calls