(&mut self)
| 256 | } |
| 257 | |
| 258 | fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> { |
| 259 | let mut snapshot = Snapshot::new_from_state(&self.state())?; |
| 260 | |
| 261 | // Snapshot PciConfiguration |
| 262 | snapshot.add_snapshot(self.configuration.id(), self.configuration.snapshot()?); |
| 263 | |
| 264 | Ok(snapshot) |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | impl Transportable for PvPanicDevice {} |
nothing calls this directly
no test coverage detected