(&mut self)
| 725 | } |
| 726 | |
| 727 | fn snapshot(&mut self) -> Box<dyn std::any::Any> { |
| 728 | Box::new((self.saved_prev, FuzzwareSnapshot::take(self.uc_ptr))) |
| 729 | } |
| 730 | |
| 731 | fn restore(&mut self, snapshot: &Box<dyn std::any::Any>) { |
| 732 | let (saved_prev, fuzzware) = |
nothing calls this directly
no outgoing calls
no test coverage detected