pub trait RepoTypes:
Clone
+ Send
+ Sync
+ 'static {
type TBlockStore: BlockStore;
type TDataStore: DataStore;
type TLock: Lock;
}Required Associated Types§
Sourcetype TBlockStore: BlockStore
type TBlockStore: BlockStore
Describes a blockstore.
Sourcetype TDataStore: DataStore
type TDataStore: DataStore
Describes a datastore.
type TLock: Lock
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.