pub trait SimpleBlockData: Send + Sync {
    // Required method
    fn block(&self, id: &BlockId) -> StorageResult<CompressedBlock>;
}

Required Methods§

Implementors§