We can derive PartialEq for EntryHeader

This commit is contained in:
Matthias Beyer 2016-11-03 18:47:02 +01:00
parent e70fdc63c8
commit 5d2bc65623

View file

@ -963,7 +963,7 @@ pub type EntryContent = String;
/// ///
/// This is basically a wrapper around `toml::Table` which provides convenience to the user of the /// This is basically a wrapper around `toml::Table` which provides convenience to the user of the
/// library. /// library.
#[derive(Debug, Clone)] #[derive(Debug, Clone, PartialEq)]
pub struct EntryHeader { pub struct EntryHeader {
header: Value, header: Value,
} }