Crate digger[][src]

Expand description

Provides the Dig trait for recursively digging through a recursive data structure using a JSON-path-like selector syntax.

Also provides implementations for common types like serde_json::Value.

Features

Provides the following features:

  • serde_json: Include a Dig implementation for serde_json::Value

Traits

Dig

Used to “dig through” recursive data structures to extract named values using a selector string. Selectors are sequential names separated by an ASCII ‘.’ character, optionally prefixed with a ‘$’ root segment.