Skip to content

Commit

Permalink
Remove Instant, Duration, Ordinal.
Browse files Browse the repository at this point in the history
We're going to totally change how this works, so remove
things that we don't support yet anyway.
waywardmonkeys committed Jul 25, 2016
1 parent f048fe2 commit ee83de2
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/matchers/mod.rs
Original file line number Diff line number Diff line change
@@ -15,28 +15,21 @@
//! ...
use language_tags::LanguageTag;
use std::time::{Duration, Instant};

pub mod english;

#[allow(missing_docs)]
#[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)]

0 comments on commit ee83de2

Please sign in to comment.