| 960 | } |
| 961 | |
| 962 | pub(crate) trait FuzzerStage { |
| 963 | fn run(fuzzer: &mut Fuzzer, stats: &mut monitor::LocalStats) -> anyhow::Result<StageExit>; |
| 964 | } |
| 965 | |
| 966 | pub(crate) trait StageData { |
| 967 | fn start(fuzzer: &mut Fuzzer) -> Result<Self, StageExit> |
nothing calls this directly
no outgoing calls
no test coverage detected