pub trait QueryableCollection<'a, Root, Item> {
// Required method
fn query(&'a self) -> CollectionQuery<'a, Root, Item>;
}Expand description
Implemented for keypath types that target Vec<Item>, enabling .query().
The keypath and the reference passed to query() share the same lifetime.