[][src]Module struckdown::value

Gives access to serde_json value functionality.

The Value type is used to represent arbitrary data in a few instances. A notable example is emitted front_matter or other MetaData.

Macros

value

A re-export of the serde_json::json macro.

Structs

Map

Represents a JSON key/value type.

Number

Represents a JSON number, whether integer or floating point.

Serializer

Serializer whose output is a Value.

Enums

Value

Represents any valid JSON value.

Traits

Index

A type that can be used to index into a serde_json::Value.

Functions

from_value

Interpret a serde_json::Value as an instance of type T.

to_value

Convert a T into serde_json::Value which is an enum that can represent any valid JSON data.