You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding meta queries to support combinations of queries as queries. (#291)
* Adding meta queries to support combinations of queries as queries.
- `AndQuery`
- `OrQuery`
- `NotQuery`
- `AnyQuery`
- `AllQuery`
* Add ergonomic extension trait to simplify creating Meta queries
* Make return types more explicit
* Make the changes requested by @sminez
* Add dynamic dispatch to combinator internal types
This makes the public interface more simple.
The `'static` bound is not terribly onerous, since we are not passing a
reference to `self`, we are consuming self, and returning a new thing.
Since owned objects are by definition `'static`, this shouldn't matter.
* Clean up doc comments
0 commit comments