[−][src]Trait ironsea_index::IndexedDestructured
Methods provided by destructuring indices.
This kind of indices store inside the index both keys and values, meaning the original records can be freed.
F: Type of the struct containing the remaining fieldsK: Type of the keys
Required methods
fn find(&self, key: &K) -> Vec<&F>
Retrieve all records matching the key.
fn find_range(&self, start: &K, end: &K) -> Vec<(K, &F)>
Retrieve all records matching in the key range defined by
start and end.
startis included