Crates.io | chrono-simpletz |
lib.rs | chrono-simpletz |
version | 0.3.0 |
source | src |
created_at | 2021-04-01 03:12:46.999606 |
updated_at | 2024-01-20 12:30:38.960604 |
description | Simple Zero Sized Typed timezones for chrono |
homepage | |
repository | https://github.com/aobatact/chrono_simpletz |
max_upload_size | |
id | 376440 |
size | 35,316 |
Simple Zero Sized Typed Utc timezones for chrono. This needs const generic (for rust >= 1.51 in stable).
use chrono::*;
use chrono_simpletz::TimeZoneZst;
use chrono_simpletz::known_timezones::*;
use std::mem::size_of_val;
//construct by new() or Default::default()
let p9 = UtcP9::new();
//size of UtcP9 is zero
assert_eq!(size_of_val(&p9), 0);
assert_eq!(&p9.to_string(), "+09:00");
assert_eq!(UtcP9::IS_IN_VALID_RANGE, true);
let time = p9.ymd(2000, 1, 1).and_hms(12, 00, 00);
let naive_time = NaiveDate::from_ymd_opt(2000, 1, 1).and_hms(3, 0, 0);
assert_eq!(time.naive_utc(), naive_time);
//same size as naive datetime
assert_eq!(size_of_val(&time),size_of_val(&naive_time));
let fixed = time.with_timezone(&p9.fix());
assert_eq!(time, fixed);
//same Display with FixedOffset
assert_eq!(time.to_string(), fixed.to_string());
// smaller size than fixed offset size
assert!(size_of_val(&time) < size_of_val(&fixed) )
with std
Adds today and now function for TimeZoneZst.
serde_ts_(seconds|milliseconds|microseconds|nanoseconds)(|\_option)
Adds modules for de/serialize functions to use with de/serialize_with function.
serde_ts_rfc3339(|\_option)
Adds modules for de/serialize functions to use with de/serialize_with function.
You need this when you want to de/serialize like DateTime<Utc>
, because DateTime<UtcZtc<H,M>>
cannot impl De/Serialize.