pub type List<T> = Arc<RwLock<Vec<T>>>;
Expand description
Shortcut to Arc<RwLock<Vec<T>>>
, that can be used in an Index
This type supports all Index operations, and can be used with both
LocalField
and SparseField
serialization strategies.
Aliased Type§
struct List<T> { /* private fields */ }