pub trait StoreProvider<I>: Sized + Fallible {
    fn store(&self) -> &StoreRef<I>;
}
Expand description

Trait that ensures the value has access to a store backend

Required Methods

Get a StoreRef associated with Self

Implementors