(&self, addr: usize, dst: &mut [u8])
| 116 | } |
| 117 | |
| 118 | fn read_exact(&self, addr: usize, dst: &mut [u8]) -> Option<()> { |
| 119 | self.with_inner(|inner| inner.read_exact(addr, dst)) |
| 120 | } |
| 121 | |
| 122 | fn read_vec(&self, addr: usize, len: usize) -> Option<Vec<u8>> { |
| 123 | self.with_inner(|inner| inner.read_vec(addr, len)) |
nothing calls this directly
no test coverage detected