Push an error onto the stream.
(&mut self, error: E)
| 167 | |
| 168 | /// Push an error onto the stream. |
| 169 | pub fn push(&mut self, error: E) { |
| 170 | self.0.push(error); |
| 171 | } |
| 172 | |
| 173 | /// Extend the stream with another stream. |
| 174 | pub fn extend(&mut self, other: impl IntoIterator<Item = E>) { |
no outgoing calls