pub trait RawEntry<'a> {
type Key;
type Value;
// Required methods
fn key(&self) -> &Self::Key;
fn value(&self) -> Option<&Self::Value>;
fn value_mut(&mut self) -> Option<&mut Self::Value>;
}
Expand description
A RawEntry
represents a single record within a key-value store, providing access to the
key alongisde methods for accessing and manipulating the value of the entry.