| 385 | } |
| 386 | |
| 387 | pub(crate) trait InputQueue: InputSource { |
| 388 | /// Adds the current fuzzing input from `state` if this queue thinks it is interesting. |
| 389 | fn add_if_interesting( |
| 390 | &mut self, |
| 391 | store: &mut CorpusStore<MultiStream>, |
| 392 | state: &State, |
| 393 | ) -> Option<InputId>; |
| 394 | } |
| 395 | |
| 396 | #[derive(PartialEq, Eq)] |
| 397 | struct NewInput { |
nothing calls this directly
no outgoing calls
no test coverage detected