temporal_rs 0.2.3

Temporal in Rust is an implementation of the TC39 Temporal Builtin Proposal in Rust.
Documentation
use crate::{
    builtins::{
        core::{Now, PlainDate, PlainDateTime, PlainTime},
        TZ_PROVIDER,
    },
    host::HostHooks,
    TemporalResult, TimeZone, ZonedDateTime,
};

impl<H: HostHooks> Now<H> {
    pub fn time_zone(self) -> TemporalResult<TimeZone> {
        self.time_zone_with_provider(&*TZ_PROVIDER)
    }

    /// Converts the current [`Now`] into an [`ZonedDateTime`] with an ISO8601 calendar.
    pub fn zoned_date_time_iso(self, time_zone: Option<TimeZone>) -> TemporalResult<ZonedDateTime> {
        self.zoned_date_time_iso_with_provider(time_zone, &*TZ_PROVIDER)
    }

    /// Returns the current system time as a [`PlainDateTime`] with an optional
    /// [`TimeZone`].
    ///
    /// Enable with the `compiled_data` and `sys` feature flags.
    pub fn plain_date_time_iso(self, time_zone: Option<TimeZone>) -> TemporalResult<PlainDateTime> {
        self.plain_date_time_iso_with_provider(time_zone, &*TZ_PROVIDER)
    }

    /// Returns the current system time as a [`PlainDate`] with an optional
    /// [`TimeZone`].
    ///
    /// Enable with the `compiled_data` and `sys` feature flags.
    pub fn plain_date_iso(self, time_zone: Option<TimeZone>) -> TemporalResult<PlainDate> {
        self.plain_date_iso_with_provider(time_zone, &*TZ_PROVIDER)
    }

    /// Returns the current system time as a [`PlainTime`] with an optional
    /// [`TimeZone`].
    ///
    /// Enable with the `compiled_data` and `sys` feature flags.
    pub fn plain_time_iso(self, time_zone: Option<TimeZone>) -> TemporalResult<PlainTime> {
        self.plain_time_iso_with_provider(time_zone, &*TZ_PROVIDER)
    }
}