Expand description
Query builder for collection keypaths over rust_key_paths::KpType when the value type is Vec<Item>.
Enable the rayon feature for parallel collection operations ([query_par]).
Structs§
- Collection
Query - Query builder for collection keypaths (KpType where value is
Vec<Item>). - Collection
Query Static - Query builder for collection keypaths with
'staticlifetime (e.g. from #[derive(Kp)]). Pass the root when callingexecute,count,exists, orfirst.
Traits§
- Queryable
Collection - Implemented for keypath types that target
Vec<Item>, enabling.query(). The keypath and the reference passed toquery()share the same lifetime. - Queryable
Collection Static - Implemented for
KpType<'static, Root, Vec<Item>>(e.g. from #[derive(Kp)]), enabling.query().