pub trait InitiatedStoreState: Send + 'static {
// Required methods
fn wait_store_only<'async_trait>(
self: Box<Self>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait;
fn wait_reload<'async_trait>(
self: Box<Self>,
) -> Pin<Box<dyn Future<Output = Result<ShardStateStuff>> + Send + 'async_trait>>
where Self: 'async_trait;
}