Trait ChunkSize

Source
pub trait ChunkSize {
    // Required method
    fn chunk_size(&self) -> usize;
}
Expand description

This trait is used to produce the chunk size of a collection if it contains uniformly chunked elements.

Required Methods§

Source

fn chunk_size(&self) -> usize

Implementors§

Source§

impl<S, N: Dimension> ChunkSize for UniChunked<S, N>

Source§

impl<S: ChunkSize, I> ChunkSize for Select<S, I>

Source§

impl<S: ChunkSize, I> ChunkSize for Subset<S, I>

Source§

impl<S: ChunkSize, T, I> ChunkSize for Sparse<S, T, I>