finetime 0.8.1

High-fidelity time library for applications where sub-nanosecond accuracy and exact arithmetic are needed
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Implementation of parsing functionality. Largely separate from the actual time logic itself, so
//! kept in a separate module for isolation.
//!
//! Primarily, a subset of ISO 8601 is supported.

mod duration;
mod gregorian_date;
mod historic_date;
mod julian_date;
pub use duration::{DurationComponent, DurationDesignator};
mod decimal;
pub(crate) use decimal::DecimalNumber;
mod time_of_day;
pub(crate) use time_of_day::TimeOfDay;
mod time_point;