1 2 3 4 5 6 7
use super::IsDefault; impl IsDefault for serde_json::Value { fn is_default(&self) -> bool { matches!(self, serde_json::Value::Null) } }