1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use crate::errors::{ControlFlow, ErrorCollector};
use crate::IterResult;
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
#[derive(Debug)]
pub struct RawIter<'c, I, C> {
pub(crate) iter: I,
pub(crate) errors: &'c mut C,
}
impl<I, C> Iterator for RawIter<'_, I, C>
where
I: IterResult,
C: ErrorCollector<I::Error>,
{
type Item = I::Ok;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
loop {
match self.iter.next() {
Some(Ok(item)) => {
break item.into();
}
Some(Err(err)) => {
if let ControlFlow::Break = self.errors.push_err(err) {
break None;
}
}
None => {
break None;
}
}
}
}
}