pub trait Indexer<Index>: Debug + Send + Sync {
    fn index(
        &self,
        key: &ArcBytes<'_>,
        value: Option<&ArcBytes<'static>>
    ) -> Index; }
Expand description

Creates an Index from a key and value.

Required methods

Index the key and value.

Implementations on Foreign Types

Implementors