(&mut self)
| 533 | } |
| 534 | |
| 535 | fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { |
| 536 | let mut vfio_pci_dev_snapshot = Snapshot::default(); |
| 537 | |
| 538 | // Snapshot VfioCommon |
| 539 | vfio_pci_dev_snapshot.add_snapshot(self.common.id(), self.common.snapshot()?); |
| 540 | |
| 541 | Ok(vfio_pci_dev_snapshot) |
| 542 | } |
| 543 | } |
| 544 | impl Transportable for VfioUserPciDevice {} |
| 545 | impl Migratable for VfioUserPciDevice {} |
nothing calls this directly
no test coverage detected