(&mut self)
| 796 | } |
| 797 | |
| 798 | fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { |
| 799 | let mut snapshot = Snapshot::new_from_state(&())?; |
| 800 | |
| 801 | // Snapshot PciConfiguration |
| 802 | snapshot.add_snapshot(self.configuration.id(), self.configuration.snapshot()?); |
| 803 | |
| 804 | Ok(snapshot) |
| 805 | } |
| 806 | } |
| 807 | |
| 808 | impl Transportable for PvmemcontrolPciDevice {} |
nothing calls this directly
no test coverage detected