reth_cli_commands::common

Trait CliNodeTypes

Source
pub trait CliNodeTypes: NodeTypesWithEngine + NodeTypesForProvider<Primitives: FullNodePrimitives<BlockBody = BlockBody>> { }
Expand description

Helper trait with a common set of requirements for the NodeTypes in CLI.

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§

Source§

impl<N> CliNodeTypes for N
where N: NodeTypesWithEngine + NodeTypesForProvider<Primitives: FullNodePrimitives<BlockBody = BlockBody>>,