Trait StoreState

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

Required Methods§

Source

fn get_data(&self) -> Result<MutexGuard<'_, T>>

Implementors§