temporal_rs 0.2.3

Temporal in Rust is an implementation of the TC39 Temporal Builtin Proposal in Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! The `TimeZoneProvider` trait.

pub use timezone_provider::provider::{
    CandidateEpochNanoseconds, EpochNanosecondsAndOffset, GapEntryOffsets, NeverProvider,
    ParseDirectionError, TimeZoneId, TimeZoneProvider, TransitionDirection, UtcOffsetSeconds,
};

#[cfg(feature = "compiled_data")]
pub use crate::builtins::TZ_PROVIDER as COMPILED_TZ_PROVIDER;