pub trait ChunkReadStorage<N, Ch> {
// Required method
fn get(&self, key: ChunkKey<N>) -> Option<&Ch>;
}Expand description
Methods for reading chunks from storage.
pub trait ChunkReadStorage<N, Ch> {
// Required method
fn get(&self, key: ChunkKey<N>) -> Option<&Ch>;
}Methods for reading chunks from storage.