pub trait Strategy<T: Send + Sync>: Send + Sync {
    fn for_field(field: &T) -> Self
    where
        Self: Sized
; }
Expand description

Allows decoupling a storage strategy for index fields from the in-memory representation.

Required Methods

Instantiate a new Strategy.

Implementors