(&mut self)
| 387 | type Item = Block; |
| 388 | |
| 389 | fn next(&mut self) -> Option<Block> { |
| 390 | match self.next { |
| 391 | Some(block) => { |
| 392 | self.next = self.layout.next_block(block); |
| 393 | Some(block) |
| 394 | } |
| 395 | None => None, |
| 396 | } |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | /// Use a layout reference in a for loop. |
nothing calls this directly
no test coverage detected