(&mut self, dst: usize, src: usize, len: usize)
| 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)) |
| 116 | } |
| 117 | |
| 118 | fn read_exact(&self, addr: usize, dst: &mut [u8]) -> Option<()> { |
| 119 | self.with_inner(|inner| inner.read_exact(addr, dst)) |
nothing calls this directly
no test coverage detected