summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/value.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/value.rs b/src/value.rs
index 3b700cf..a8ae94a 100644
--- a/src/value.rs
+++ b/src/value.rs
@@ -5,7 +5,7 @@ use error::*;
use serde::de::{Deserialize, Deserializer, Visitor};
/// Underlying kind of the configuration value.
-#[derive(Debug, Clone)]
+#[derive(Debug, Clone, PartialEq)]
pub enum ValueKind {
Nil,
Boolean(bool),
@@ -114,7 +114,7 @@ impl Display for ValueKind {
}
/// A configuration value.
-#[derive(Default, Debug, Clone)]
+#[derive(Default, Debug, Clone, PartialEq)]
pub struct Value {
/// A description of the original location of the value.
///