Skip to main content

RepoTypes

Trait RepoTypes 

Source
pub trait RepoTypes:
    Clone
    + Send
    + Sync
    + 'static {
    type TBlockStore: BlockStore;
    type TDataStore: DataStore;
    type TLock: Lock;
}

Required Associated Types§

Source

type TBlockStore: BlockStore

Describes a blockstore.

Source

type TDataStore: DataStore

Describes a datastore.

Source

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.

Implementors§