pub trait Policy {
// Required methods
fn handle_tally(&mut self, tally: TrafficTally) -> PolicyResponse;
fn policy_config(&self) -> &PolicyConfig;
}
pub trait Policy {
// Required methods
fn handle_tally(&mut self, tally: TrafficTally) -> PolicyResponse;
fn policy_config(&self) -> &PolicyConfig;
}