Trait NodeTypesWithDB
pub trait NodeTypesWithDB: NodeTypes {
type DB: Database + DatabaseMetrics + DatabaseMetadata + Clone + Unpin + 'static;
}
Expand description
A helper trait that is downstream of the NodeTypesWithEngine
trait and adds database to the
node.
Its types are configured by node internally and are not intended to be user configurable.
Required Associated Types§
type DB: Database + DatabaseMetrics + DatabaseMetadata + Clone + Unpin + 'static
type DB: Database + DatabaseMetrics + DatabaseMetadata + Clone + Unpin + 'static
Underlying database type used by the node to store and retrieve data.