pub trait Loader: Sync + Send {
// Required method
fn push<'life0, 'async_trait>(
&'life0 mut self,
hist: History,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}