-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
1 changed file
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters