pub trait RepoTypes: Send + Sync + 'static {
type TBlockStore: BlockStore;
type TDataStore: DataStore;
type TLock: Lock;
}
Expand description
Consolidates BlockStore
and DataStore
into a representation of storage.
Required Associated Types§
sourcetype TBlockStore: BlockStore
type TBlockStore: BlockStore
Describes a blockstore.
sourcetype TDataStore: DataStore
type TDataStore: DataStore
Describes a datastore.