timereport 0.4.1

A small command-line utility for reporting working time and displaying it in different formats.
Documentation
1
2
3
4
5
6
7
pub trait Parsable
where
    Self: Sized,
{
    fn from_str(text: &str) -> Result<Self, String>;
    fn to_hhmm(&self) -> String;
}