// Rust guideline compliant 2026-03-14
//! `CSharp` implementations for `serde_json` types.
//!
//! Enabled by the `serde-json-impl` feature.
//!
//! `serde_json::Value` maps to a config-dependent C# type:
//! - **System.Text.Json**: `JsonElement`
//! - **Newtonsoft.Json**: `JToken`
use crate::;
impl_csharp_primitive!;
/// `serde_json::Value` maps to `JsonElement` (STJ) or `JToken` (Newtonsoft).