profuzz_common 0.1.0

profuzz_common is a collection of ready to use implementations for the different traits to be implemented to run profuzz_core.
Documentation
1
2
3
4
5
6
7
8
9
10
use profuzz_core::traits::ResetHandler;

/// Dummy reset handler which does do nothing
pub struct DummyResetHandler();
impl ResetHandler for DummyResetHandler {
    async fn reset(&mut self) -> Result<(), profuzz_core::error::ProFuzzError> {
        tracing::error!("dummy reset handler triggered, but it does nothing");
        Ok(())
    }
}