summaryrefslogtreecommitdiffstats
path: root/libimagstore
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-11-03 18:47:02 +0100
committerMatthias Beyer <mail@beyermatthias.de>2016-11-03 18:47:02 +0100
commit5d2bc65623e20ee7faa5a052629755eaee2dbc35 (patch)
treea7bc5e5f575ece3826d82df1ab8ef1127430c423 /libimagstore
parente70fdc63c8f566039cf3f1afa910fa1a47430415 (diff)
We can derive PartialEq for EntryHeader
Diffstat (limited to 'libimagstore')
-rw-r--r--libimagstore/src/store.rs2
1 files changed, 1 insertions, 1 deletions
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,
}