summaryrefslogtreecommitdiff
path: root/serde_dhall/src/simple.rs
diff options
context:
space:
mode:
authorNadrieril2020-03-22 21:25:44 +0000
committerNadrieril2020-03-31 21:45:31 +0100
commit002d7c2a74647312a821598ac3d9f5521296873d (patch)
treea360114d5b30d87c97586fc5e0b59ff3a535c515 /serde_dhall/src/simple.rs
parent1a98b506055779e1a60558d9c5a56b071b3d61a0 (diff)
Add a bunch of TODOs
Diffstat (limited to 'serde_dhall/src/simple.rs')
-rw-r--r--serde_dhall/src/simple.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/serde_dhall/src/simple.rs b/serde_dhall/src/simple.rs
index 95642bd..3d77853 100644
--- a/serde_dhall/src/simple.rs
+++ b/serde_dhall/src/simple.rs
@@ -6,6 +6,7 @@ use dhall::syntax::{Builtin, ExprKind, NumKind, Span};
use crate::{Deserialize, Error, Result, Sealed};
/// A simple value of the kind that can be encoded/decoded with serde
+/// TODO
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Value {
kind: Box<ValKind>,
@@ -24,6 +25,7 @@ pub enum ValKind {
}
/// The type of a `simple::Value`.
+/// TODO
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Type {
kind: Box<TyKind>,