pub trait BlockReaderFor<N: NetworkPrimitives>: BlockReader<Block = N::Block, Header = N::BlockHeader, Transaction = <N::BlockBody as BlockBody>::Transaction, Receipt = N::Receipt> { }Expand description
This is a type alias to make type bounds simpler, when we have a NetworkPrimitives and need
a BlockReader whose associated types match the NetworkPrimitives associated types.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".