pub trait Strategy<T: Send + Sync>: Send + Sync { // Required method fn for_field(field: &T) -> Self where Self: Sized; }
Allows decoupling a storage strategy for index fields from the in-memory representation.
Instantiate a new Strategy.
Strategy