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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".