pub enum SerdeJsonFragment<'a> {
Key(&'a str),
Value(&'a Value),
}
Expand description
A fragment of a serde_json::Value
.
Used by the Value::from_serde_json
to annotate the output value.
pub enum SerdeJsonFragment<'a> {
Key(&'a str),
Value(&'a Value),
}
A fragment of a serde_json::Value
.
Used by the Value::from_serde_json
to annotate the output value.