pub trait Task: Send + 'static {
// Required method
fn entrypoint<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait;
}pub trait Task: Send + 'static {
// Required method
fn entrypoint<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait;
}