pub fn test_serialization_roundtrip<T>(json_data: &str)where T: Debug + PartialEq + Serialize + DeserializeOwned,
Utility function that asserts that the given JSON input can be serialized into and deserialized from the specified type T.
T