From ee83de2d1c2c61fd4d2a0347cbcd9709db0f3c1f Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 25 Jul 2016 10:42:06 +0700 Subject: [PATCH] Remove Instant, Duration, Ordinal. We're going to totally change how this works, so remove things that we don't support yet anyway. --- src/matchers/mod.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/matchers/mod.rs b/src/matchers/mod.rs index 002a952..ae155f9 100644 --- a/src/matchers/mod.rs +++ b/src/matchers/mod.rs @@ -15,7 +15,6 @@ //! ... use language_tags::LanguageTag; -use std::time::{Duration, Instant}; pub mod english; @@ -23,20 +22,14 @@ pub mod english; #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub enum ValueType { Boolean, - Duration, - Instant, Integer, - Ordinal, } #[allow(missing_docs)] #[derive(Debug, PartialEq)] pub enum HumanValue { Boolean(bool), - Duration(Duration), - Instant(Instant), Integer(i64), - Ordinal(i64), } #[allow(missing_docs)]