pub trait StoreState<T: ApplicationState>: Send + Sync {
// Required method
fn get_data(&self) -> Result<MutexGuard<'_, T>>;
}
pub trait StoreState<T: ApplicationState>: Send + Sync {
// Required method
fn get_data(&self) -> Result<MutexGuard<'_, T>>;
}