pub trait PredicateStorageProvider: Sync {
type Storage: PredicateStorageRequirements + Send + Sync + 'static;
// Required method
fn storage(&self) -> Self::Storage;
}
Expand description
The type that returns the predicate storage instance.
Required Associated Types§
sourcetype Storage: PredicateStorageRequirements + Send + Sync + 'static
type Storage: PredicateStorageRequirements + Send + Sync + 'static
The storage type.