reth_network_p2p

Trait EthBlockClient

Source
pub trait EthBlockClient: BlockClient<Header = Header, Body = BlockBody> { }
Expand description

The BlockClient providing Ethereum block parts.

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<T> EthBlockClient for T
where T: BlockClient<Header = Header, Body = BlockBody>,