From 5d2bc65623e20ee7faa5a052629755eaee2dbc35 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 3 Nov 2016 18:47:02 +0100 Subject: [PATCH] We can derive PartialEq for EntryHeader --- libimagstore/src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index e07c9b29..91f2eb86 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -963,7 +963,7 @@ pub type EntryContent = String; /// /// This is basically a wrapper around `toml::Table` which provides convenience to the user of the /// library. -#[derive(Debug, Clone)] +#[derive(Debug, Clone, PartialEq)] pub struct EntryHeader { header: Value, }