pub trait PingResultProcessor {
    fn name(&self) -> &'static str;
    fn config(&self) -> &PingResultProcessorCommonConfig;
    fn process_ping_result(&mut self, ping_result: &PingResult);

    fn has_quiet_level(&self, quiet_level: i32) -> bool { ... }
    fn initialize(&mut self) { ... }
    fn rundown(&mut self) { ... }
}

Required Methods

Provided Methods

Implementors