summaryrefslogtreecommitdiffstats
path: root/src/value.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2017-01-25 18:08:38 -0800
committerRyan Leckey <leckey.ryan@gmail.com>2017-01-25 18:08:38 -0800
commit0944c855d8382225dc083e392c77d7a8a93224e0 (patch)
treee1c68921be972a483c5409c5fbe7819021ab2a14 /src/value.rs
parent91f72c5c2a20c5a9b6b17b5d9ee626645783e5db (diff)
:memo:
Diffstat (limited to 'src/value.rs')
-rw-r--r--src/value.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/value.rs b/src/value.rs
index a2b037c..192632b 100644
--- a/src/value.rs
+++ b/src/value.rs
@@ -1,7 +1,10 @@
use std::convert::From;
use std::borrow::Cow;
-// Variant for a configuration Value
+/// A configuration value.
+///
+/// Has an underlying or native type that comes from the configuration source
+/// but will be coerced into the requested type.
#[derive(Clone)]
pub enum Value {
String(String),