proof_of_sql/base/posql_time/mod.rs
1mod error;
2/// Errors related to time operations, including timezone and timestamp conversions.
3pub use error::PoSQLTimestampError;
4mod timezone;
5/// Defines a timezone as count of seconds offset from UTC
6pub use timezone::PoSQLTimeZone;
7mod unit;
8/// Defines the precision of the timestamp
9pub use unit::PoSQLTimeUnit;