pub trait IndexReader {
// Required method
fn get(&self, key: &[u8]) -> Result<Option<ValueHandle>>;
}Expand description
Trait that allows reading from an external index
An index should point into the value log using ValueHandle.
pub trait IndexReader {
// Required method
fn get(&self, key: &[u8]) -> Result<Option<ValueHandle>>;
}Trait that allows reading from an external index
An index should point into the value log using ValueHandle.