pub trait FullNodeTypes:
Send
+ Sync
+ Unpin
+ 'static {
type Types: NodeTypesWithDB + NodeTypesWithEngine;
type Provider: FullProvider<Self::Types>;
}
Expand description
A helper trait that is downstream of the NodeTypesWithEngine
trait and adds stateful
components to the node.
Its types are configured by node internally and are not intended to be user configurable.
Required Associated Types§
Sourcetype Types: NodeTypesWithDB + NodeTypesWithEngine
type Types: NodeTypesWithDB + NodeTypesWithEngine
Node’s types with the database.
Sourcetype Provider: FullProvider<Self::Types>
type Provider: FullProvider<Self::Types>
The provider type used to interact with the node.