proof_of_sql_parser/posql_time/
mod.rs

1mod error;
2/// Errors related to time operations, including timezone and timestamp conversions.
3pub use error::PoSQLTimestampError;
4mod timestamp;
5/// Defines an RFC3339-formatted timestamp
6pub use timestamp::PoSQLTimestamp;
7mod timezone;
8/// Defines a timezone as count of seconds offset from UTC
9pub use timezone::PoSQLTimeZone;
10mod unit;
11/// Defines the precision of the timestamp
12pub use unit::PoSQLTimeUnit;