Modules§
- tools
- Additional tools for working with JSON data.
Structs§
- Value
- Value is the JSON value returned from the
getfunction.
Enums§
- Kind
- The kind of json
Value.
Functions§
- get
- Searches json for the specified path. A path is in dot syntax, such as “name.last” or “age”. When the value is found it’s returned immediately.
- get_
bytes ⚠ - Searches json for the specified path.
Works the same as
getexcept that the input json is a a byte slice instead of a string. - parse
- Parse the json and return it as a value.
- valid
- Returns true if the input is valid json.