| 380 | } |
| 381 | |
| 382 | pub(crate) trait InputSource { |
| 383 | /// Get the next input the input queue. Returns `None` if the queue is empty. |
| 384 | fn next_input(&mut self, store: &CorpusStore<MultiStream>) -> Option<InputId>; |
| 385 | } |
| 386 | |
| 387 | pub(crate) trait InputQueue: InputSource { |
| 388 | /// Adds the current fuzzing input from `state` if this queue thinks it is interesting. |
nothing calls this directly
no outgoing calls
no test coverage detected