(&self, index: u32, offset: u64, data: &mut [u8])
| 450 | |
| 451 | impl Vfio for VfioDeviceWrapper { |
| 452 | fn region_read(&self, index: u32, offset: u64, data: &mut [u8]) { |
| 453 | self.device.region_read(index, data, offset); |
| 454 | } |
| 455 | |
| 456 | fn region_write(&self, index: u32, offset: u64, data: &[u8]) { |
| 457 | self.device.region_write(index, data, offset); |
no outgoing calls
no test coverage detected