You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
291 B

use super::*;
use std::io;
/// The intermediate representation object.
///
/// # Pipeline
/// This is used as the deserialisation target output, which is then re-serialized with the other serializer to output:
/// * input -(de)> `Object` -(ser)> output
pub type Object = serde_json::Value;