pub trait SecurityAuditLogger: Send + Sync {
// Required method
fn log<'life0, 'async_trait>(
&'life0 self,
event: SecurityAuditEvent,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}Expand description
Trait for security audit loggers