pub trait ExecutionProgressReporter: Send + Sync {
// Required method
fn report<'life0, 'async_trait>(
&'life0 self,
event: ExecutionProgressEvent,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}Expand description
Sink interface for execution progress reporting.
Required Methods§
fn report<'life0, 'async_trait>(
&'life0 self,
event: ExecutionProgressEvent,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".