mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-03 03:25:01 -05:00
9 lines
260 B
Rust
9 lines
260 B
Rust
use reth_primitives_traits::NodePrimitives;
|
|
|
|
/// Provider implementation that knows configured [`NodePrimitives`].
|
|
#[auto_impl::auto_impl(&, Arc, Box)]
|
|
pub trait NodePrimitivesProvider {
|
|
/// The node primitive types.
|
|
type Primitives: NodePrimitives;
|
|
}
|