(&self)
| 489 | } |
| 490 | |
| 491 | pub const fn next(&self) -> Self { |
| 492 | let addr = self.addr + self.align.value(); |
| 493 | let align = self.align; |
| 494 | Self { addr, align } |
| 495 | } |
| 496 | |
| 497 | pub const fn prev(&self) -> Self { |
| 498 | let addr = self.addr - self.align.value(); |
no test coverage detected