(self)
| 33 | type IntoIter = SnakeIntoIterator<'a, T, MAX_SIZE>; |
| 34 | |
| 35 | fn into_iter(self) -> Self::IntoIter { |
| 36 | SnakeIntoIterator { |
| 37 | snake: self, |
| 38 | index: 0, |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | impl<'a, T: PixelColor, const MAX_SIZE: usize> Iterator for SnakeIntoIterator<'a, T, MAX_SIZE> { |
no outgoing calls
no test coverage detected