hours 0.0.1

A parser for the opening hours format
Documentation
//!
//! Opening hours implementation for Rust
//!
//! Specification: https://wiki.openstreetmap.org/wiki/Key:opening_hours/specification
//!

mod parsers;

#[derive(Clone, Debug, PartialEq)]
pub struct Modifier {
    pub state: State,
    pub comment: String,
}

#[derive(Copy, Clone, Debug, PartialEq)]
pub enum State {
    Open,
    Closed,
    Unknown,
}