From 93d62b862cb9a4a0a013b5613554b7b8221ee76f Mon Sep 17 00:00:00 2001 From: lukas prediger Date: Wed, 14 Sep 2022 19:27:16 +0200 Subject: [PATCH] Fix linter error and derive Eq Trait for SchemaHypothesis --- core/src/model/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/model/mod.rs b/core/src/model/mod.rs index 5887980..69259b1 100644 --- a/core/src/model/mod.rs +++ b/core/src/model/mod.rs @@ -14,7 +14,7 @@ mod number; mod object; mod string; -#[derive(Debug, PartialEq)] +#[derive(Debug, PartialEq, Eq)] pub struct SchemaHypothesis { pub root: NodeType, }