Returns whether the fuzzing instance with this reference corresponds any instance except the main instance.
(&self)
| 600 | /// Returns whether the fuzzing instance with this reference corresponds any instance except the |
| 601 | /// main instance. |
| 602 | pub fn is_worker_instance(&self) -> bool { |
| 603 | !self.is_main_instance() |
| 604 | } |
| 605 | |
| 606 | pub fn add_new(&self, input: MultiStream) -> u64 { |
| 607 | self.queue.add_new(self.id, input.into()) |
no test coverage detected