pub trait Partitioned {
// Required methods
fn counts(&self) -> &[Count] ⓘ;
fn displs(&self) -> &[Count] ⓘ;
}
Expand description
Describes how a Buffer
is partitioned by specifying the count of elements and displacement
from the start of the buffer for each partition.