Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod timer {
    pub const FINISH_TEXT: &'static str = "Time's Up!";
}

pub mod parser {
    pub mod codes {
        pub const HOUR: &'static str = "h";
        pub const MINUTE: &'static str = "m";
        pub const SECOND: &'static str = "s";
        pub const MILLISECOND: &'static str = "ms";
        pub const NANOSECOND: &'static str = "ns";
    }
}

pub mod output {
    pub const DEFAULT_FORMAT: &'static str = "%H:%M:%S";
    pub const DEFAULT_PRINT_INTERVAL_MS: u64 = 100;
}