jiff 0.1.15

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 alloc::{string::String, vec::Vec};

use crate::tz::TimeZone;

#[derive(Debug)]
pub(crate) struct BundledZoneInfo;

impl BundledZoneInfo {
    pub(crate) fn new() -> BundledZoneInfo {
        BundledZoneInfo
    }

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

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

    pub(crate) fn available(&self) -> Vec<String> {
        Vec::new()
    }

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