(&mut self)
| 607 | type Item = T; |
| 608 | |
| 609 | fn next(&mut self) -> Option<Self::Item> { |
| 610 | self.iter |
| 611 | .next() |
| 612 | .map(|x| unsafe { T::enum_from_u32_checked(x) }) |
| 613 | } |
| 614 | fn size_hint(&self) -> (usize, Option<usize>) { |
| 615 | self.iter.size_hint() |
| 616 | } |
no outgoing calls
no test coverage detected