pub trait BlockIOLayout {
type Error: Debug;
type BlockSize: BlockSize;
// Required methods
fn block_size(&self) -> Self::BlockSize;
fn num_blocks(&self) -> u64;
}
pub trait BlockIOLayout {
type Error: Debug;
type BlockSize: BlockSize;
// Required methods
fn block_size(&self) -> Self::BlockSize;
fn num_blocks(&self) -> u64;
}