summaryrefslogtreecommitdiff
path: root/dhall_core/src/label.rs
diff options
context:
space:
mode:
authorNadrieril2019-03-22 18:12:13 +0100
committerNadrieril2019-03-22 18:12:13 +0100
commit8110651ccf498bcf3f0cd55f3b1730d9972cf254 (patch)
tree2e0b08153582b23bce178f4ca3b945b01ddd6306 /dhall_core/src/label.rs
parent9a8a14ba3863b3bc5e79cd8070d6779451ff8466 (diff)
Handle quoted labels
Diffstat (limited to '')
-rw-r--r--dhall_core/src/label.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/dhall_core/src/label.rs b/dhall_core/src/label.rs
index 3633b93..8b371af 100644
--- a/dhall_core/src/label.rs
+++ b/dhall_core/src/label.rs
@@ -1,4 +1,3 @@
-use std::fmt::{self, Display};
use std::rc::Rc;
// The type for labels throughout the AST
@@ -25,12 +24,6 @@ impl From<Label> for String {
}
}
-impl Display for Label {
- fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
- self.0.as_ref().fmt(f)
- }
-}
-
impl Label {
pub fn from_str(s: &str) -> Label {
Label(s.into())