(&self, index: u32, offset: u64, data: &mut [u8])
| 294 | |
| 295 | impl Vfio for VfioUserClientWrapper { |
| 296 | fn region_read(&self, index: u32, offset: u64, data: &mut [u8]) { |
| 297 | self.client |
| 298 | .lock() |
| 299 | .unwrap() |
| 300 | .region_read(index, offset, data) |
| 301 | .ok(); |
| 302 | } |
| 303 | |
| 304 | fn region_write(&self, index: u32, offset: u64, data: &[u8]) { |
| 305 | self.client |