pub trait OutboxExporter: Send + Sync {
// Required method
fn export<'life0, 'life1, 'async_trait>(
&'life0 self,
event: &'life1 OutboxEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
// Provided method
fn name(&self) -> &'static str { ... }
}Expand description
External sink that receives a copy of every outbox event.