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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".