diff --git a/src/scalars/json.rs b/src/scalars/json.rs index 831f7b1c..584e9045 100644 --- a/src/scalars/json.rs +++ b/src/scalars/json.rs @@ -6,6 +6,7 @@ use serde::Serialize; use std::ops::{Deref, DerefMut}; /// A scalar that can represent any JSON value. +#[derive(Clone, Debug, Eq, PartialEq, Hash)] pub struct Json(pub T); impl Deref for Json {