pub trait UniChunkable<N> {
type Chunk;
}Expand description
A trait intended to be implemented on collection types to define the type of
a statically sized chunk in this collection.
This trait is required for composing with UniChunked.
pub trait UniChunkable<N> {
type Chunk;
}A trait intended to be implemented on collection types to define the type of
a statically sized chunk in this collection.
This trait is required for composing with UniChunked.