pub trait RunRecorder: Send + Sync {
// Required method
fn start<'life0, 'life1, 'async_trait>(
&'life0 self,
trigger_kind: &'life1 str,
trigger: Value,
) -> Pin<Box<dyn Future<Output = Box<dyn RunHandle>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Sink for run and step facts (audit, UI, metrics).
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".