summaryrefslogtreecommitdiffstats
path: root/src/value.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2017-02-08 02:04:56 -0800
committerRyan Leckey <leckey.ryan@gmail.com>2017-02-08 02:04:56 -0800
commit65714bea49036cb2f9188072a8a5d143ac9b9eb9 (patch)
treef89553c6d06d9de6a314ae02cd37f70c3d3e15b2 /src/value.rs
parent33bc35e1c960b146601083fa1f2d0d602e6152ca (diff)
Implement 'namespace' on File
Diffstat (limited to 'src/value.rs')
-rw-r--r--src/value.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/value.rs b/src/value.rs
index fa2f791..bb88c34 100644
--- a/src/value.rs
+++ b/src/value.rs
@@ -8,6 +8,7 @@ use std::borrow::Cow;
/// but will be coerced into the requested type.
#[derive(Debug, Clone, PartialEq)]
pub enum Value {
+ Nil,
String(String),
Integer(i64),
Float(f64),