pub trait Indexer<Index>: Debug + Send + Sync { fn index( &self, key: &ArcBytes<'_>, value: Option<&ArcBytes<'static>> ) -> Index; }
Creates an Index from a key and value.
Index
Index the key and value.