spinoso_time/time/
mod.rs

1//! Implementations of Ruby [`Time`], a timezone-aware datetime.
2//!
3//! This module contains implementations of a timestamp storage struct and
4//! associated datetime operations that view that timestamp through the lens of
5//! a timezone offset. These timestamps can be used to implement the Ruby `Time`
6//! core class.
7//!
8//! There are several independent backends which can be selected by specifying
9//! the appropriate feature:
10//!
11//! - `tzrs` is based on the [`tz-rs`] crate.
12//!
13//! Backends store datetimes as a `i64` [Unix timestamp], subsecond nanoseconds
14//! as a `u32`, and a timezone offset which can be one of several types.
15//!
16//! [`Time`]: https://ruby-doc.org/core-3.1.2/Time.html
17//! [`tzrs`]: https://crates.io/crates/tz-rs
18//! [Unix timestamp]: https://en.wikipedia.org/wiki/Unix_time
19
20/// A Time struct backed by the [`tz-rs`](tz) crate.
21#[cfg(feature = "tzrs")]
22pub mod tzrs;