Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-arrow/src/legacy/time_zone.rs
6939 views
1
// a placeholder type for when timezones are not enabled
2
#[cfg(not(feature = "timezones"))]
3
#[derive(Copy, Clone)]
4
pub enum Tz {}
5
#[cfg(feature = "timezones")]
6
pub use chrono_tz::Tz;
7
8