TTTime Rust Library
TTTime is a base 10 time representation. It is used to represent time in a way that is easy to understand and work with. Time is measured from 18:00:00 - 21/10/2020 UTC Standard Time (Day Zero).
This implementation is missing some features, mainly interactions with standard time, it also is slightly buggy, feel free to open an issue if you have any suggestions or want to contribute at https://github.com/tonyaellie/tttime.
Day Zero: 18:00:00 - 21/10/2020 UTC
1 TTT Hour = 1 Hour Standard Time
100 TTT Seconds in a TTT Minute
100 TTT Minutes in a TTT Hour
100 TTT Hours in a TTT Day
10 TTT Days in a TTT Month
10 TTT Months in a TTT Year
Benefits
- Easy to understand and work with
- No time zones or daylight savings time
- No leap anything
Installing and Using
use ;
let mut time = new;
time.set_year;
time.set_month;
time.set_day;
time.set_hour;
time.set_minute;
time.set_second;
time.set_millisecond;
println!;
// 2020-09-02 18:00:00
API