jiff 0.2.23

A date-time library that encourages you to jump into the pit of success. This library is heavily inspired by the Temporal project.
Documentation
use crate::tz::{TimeZone, TimeZoneNameIter};

#[derive(Clone)]
pub(crate) struct Database;

impl Database {
    pub(crate) fn from_env() -> Database {
        Database
    }

    #[cfg(feature = "std")]
    pub(crate) fn from_dir(
        _dir: &std::path::Path,
    ) -> Result<Database, crate::Error> {
        Err(crate::error::Error::from(
            crate::error::CrateFeatureError::TzdbZoneInfo,
        )
        .context(crate::error::tz::db::Error::DisabledZoneInfo))
    }

    pub(crate) fn none() -> Database {
        Database
    }

    pub(crate) fn reset(&self) {}

    pub(crate) fn get(&self, _query: &str) -> Option<TimeZone> {
        None
    }

    pub(crate) fn available<'d>(&'d self) -> TimeZoneNameIter<'d> {
        TimeZoneNameIter::empty()
    }

    pub(crate) fn is_definitively_empty(&self) -> bool {
        true
    }
}

impl core::fmt::Debug for Database {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.write_str("ZoneInfo(unavailable)")
    }
}