Trait batch_processing::tokio::step::AsyncStepRunner
source · pub trait AsyncStepRunner<R>{
// Required method
fn run<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = R> + Send + 'async_trait>>
where Self: 'async_trait;
}
Expand description
A trait for running asynchronous tasks and returning a result.
Required Methods§
Object Safety§
This trait is not object safe.