(&mut self, addr: usize, len: usize, val: u8)
| 108 | } |
| 109 | |
| 110 | fn fill(&mut self, addr: usize, len: usize, val: u8) -> Option<()> { |
| 111 | self.with_inner_mut(|inner| inner.fill(addr, len, val)) |
| 112 | } |
| 113 | |
| 114 | fn copy_within(&mut self, dst: usize, src: usize, len: usize) -> Option<()> { |
| 115 | self.with_inner_mut(|inner| inner.copy_within(dst, src, len)) |
nothing calls this directly
no test coverage detected