Trait building_blocks::prelude::ChunkReadStorage[][src]

pub trait ChunkReadStorage<N, Ch> {
    fn get(&self, key: ChunkKey<N>) -> Option<&Ch>;
}
Expand description

Methods for reading chunks from storage.

Required methods

Borrow the chunk at key.

Implementations on Foreign Types

Implementors