(&mut self, snapshot: &Box<dyn std::any::Any>)
| 64 | } |
| 65 | |
| 66 | fn restore(&mut self, snapshot: &Box<dyn std::any::Any>) { |
| 67 | self.clone_from(snapshot.downcast_ref().unwrap()); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | pub type PathTracerSnapshot = Vec<TraceEntry>; |
no test coverage detected