1 2 3 4 5
//! An [`Object`] type for representing arbitrary structured values. /// A type alias for [`json::JsonValue`]. /// Used to represent arbitrary structured values. pub type Object = json::JsonValue;
1 2 3 4 5
//! An [`Object`] type for representing arbitrary structured values. /// A type alias for [`json::JsonValue`]. /// Used to represent arbitrary structured values. pub type Object = json::JsonValue;