Separating out CastToAny.

This commit is contained in:
Tom Alexander
2020-05-10 22:04:41 -04:00
parent d5e0c93205
commit 9baa669dea
3 changed files with 39 additions and 10 deletions

View File

@@ -140,3 +140,9 @@ impl Loopable for serde_json::Value {
}
}
}
impl CompareContextElement for serde_json::Value {
fn equals(&self, other: &dyn ContextElement) -> bool {
false
}
}