pub trait SecurityEventHandler: Send + Sync {
// Required method
fn handle(&self, event: &SecurityEvent);
}Expand description
Trait for handling security events.
Required Methods§
Sourcefn handle(&self, event: &SecurityEvent)
fn handle(&self, event: &SecurityEvent)
Handle a security event.