docs.rs failed to build data-query-0.1.6
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
data-query-0.1.3
Data Query
Data Query is a library that allows query any Serializable data.
Usage
It currently supports only a few structures of querying.
- Map Data eg
.some-key.some-other-key
- Generic Indexing of Array and Maps
.some-array[0]
- getting key 0 in the array.some-array[0-2,6]
- getting key 0,1,2 and 6.some-map[key1, key2]
- Treating the array as a map, and getting key1 and key2
More will be added later, see TODO
In code usage
To query the data the following can be used:
Using precompile_lex
precompile_lex!
macro will build the lexical from the query string that has already been given.
Prebuilding the lexical operations reduces the amount of processing required
let lex = precompile_lex!;
let data = default;
let query_res = query;
println!;
Using compile
If the query is dynamically created, it might be better to just compile the lexical on the fly.
let lex = compile.unwrap;
let data = default;
let query_res = query;
println!;
Todo
At the moment there is only 1 todo because it very high on the list.
- Rewrite Lexical module to make it more dynamic and better handle tokens;