(&self, index: usize)
| 42 | } |
| 43 | |
| 44 | pub fn next_table(&self, index: usize) -> Option<&Table<L::NextLevel>> { |
| 45 | self.next_table_address(index) |
| 46 | .map(|address| unsafe { &*(address as *const _) }) |
| 47 | } |
| 48 | |
| 49 | pub fn next_table_mut(&mut self, index: usize) -> Option<&mut Table<L::NextLevel>> { |
| 50 | self.next_table_address(index) |
no test coverage detected