Expand description
Simple & fast UTC time types.
While chrono is great for dealing with time in most cases, its 96-bit integer design can be costly when processing and storing large amounts of timestamp data.
This lib solves this problem by providing very simple UTC timestamps that can be
converted from and into their corresponding chrono counterpart using Rust’s
From
and Into
traits. chrono is then used for all things that aren’t expected
to occur in big batches, such as formatting and displaying the timestamps.
Structs§
- Time
Delta - Millisecond precision time delta.
- Time
Range - An iterator looping over dates given a time delta as step.
- UtcTime
Stamp - Represents a dumb but fast UTC timestamp.