2 unstable releases
0.2.0 | Jul 17, 2021 |
---|---|
0.1.0 | Jul 17, 2021 |
#2604 in Parser implementations
25 downloads per month
32KB
582 lines
query-parser
A simple parser for search queries. This takes a string like from:foo -subject:'a long subject \u00270c' baz
and returns it in a structured format:
Query {
raw_query: "from:foo -subject:\'a long subject \\u00270c\' baz",
terms: [
Term { negated: false, key: Some("from"), value: Simple("foo") },
Term { negated: true, key: Some("subject"), value: Simple("a long subject ✌") },
Term { negated: false, key: None, value: Simple("baz") }
]
}
The primary entry point for this library are the following functions:
parse(&str) -> Query;
parse_with_options(&str, &ParseOptions) -> Query;
Refer to the full documentation for details.