(&mut self, base: u64, offset: u64, byte: u8)
| 144 | } |
| 145 | |
| 146 | fn write_8(&mut self, base: u64, offset: u64, byte: u8) -> core::result::Result<(), crate::Trap> { |
| 147 | self.try_with_inner_mut(|inner| inner.write_8(base, offset, byte))? |
| 148 | } |
| 149 | |
| 150 | fn write_16(&mut self, base: u64, offset: u64, bytes: [u8; 2]) -> core::result::Result<(), crate::Trap> { |
| 151 | self.try_with_inner_mut(|inner| inner.write_16(base, offset, bytes))? |
nothing calls this directly
no test coverage detected