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
use profuzz_core::traits::HealthCheck;

/// Dummy health check does always returns true
pub struct DummyHealthcheck();
impl HealthCheck for DummyHealthcheck {
    async fn is_ok(&mut self) -> Result<bool, profuzz_core::error::ProFuzzError> {
        Ok(true)
    }
}