pub trait ParBlocksSizeUser: BlockSizeUser {
type ParBlocksSize: ArrayLength<Block<Self>>;
}Expand description
Types which can process blocks in parallel.
Required Associated Types§
Sourcetype ParBlocksSize: ArrayLength<Block<Self>>
type ParBlocksSize: ArrayLength<Block<Self>>
Number of blocks which can be processed in parallel.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".