polars_arrow/legacy/
time_zone.rs

1// a placeholder type for when timezones are not enabled
2#[cfg(not(feature = "timezones"))]
3#[derive(Copy, Clone)]
4pub enum Tz {}
5#[cfg(feature = "timezones")]
6pub use chrono_tz::Tz;