(&mut self)
| 118 | type Item = A::Item; |
| 119 | |
| 120 | fn next(&mut self) -> Option<Self::Item> { |
| 121 | match self { |
| 122 | EitherIter::A(a) => a.next(), |
| 123 | EitherIter::B(b) => b.next(), |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | match self.kind() { |
nothing calls this directly
no outgoing calls
no test coverage detected