Crate jsonpath_plus
source · [−]Expand description
Implementation of the JSONPath
spec, Proposal A with extensions.
Modules
Errors returned by fallible methods
Structs
A compiled JSON path. Can be used to match against items any number of times, preventing recompilation of the same pattern many times.
Functions
Find a pattern in the provided JSON value. Recompiles the pattern every call, if the same
pattern is used a lot should instead try using JsonPath::compile
.
Find a pattern in the provided JSON string. Recompiles the pattern every call, if the same
pattern is used a lot should instead try using JsonPath::compile
.