From 8d5cbef4890d021d1cc119939e80809016068ba9 Mon Sep 17 00:00:00 2001 From: Carey Metcalfe Date: Sun, 8 Sep 2024 23:42:48 -0400 Subject: [PATCH] Remove unused ParsedDateTime.has_offset --- rust/src/parsing.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/rust/src/parsing.rs b/rust/src/parsing.rs index 757a3e3b..a1060c6a 100644 --- a/rust/src/parsing.rs +++ b/rust/src/parsing.rs @@ -27,7 +27,6 @@ pub struct ParsedDateTime { pub second: u32, pub microsecond: u32, pub offset: Option, - pub has_offset: bool, pub tzname: Option, pub has_date: bool, pub has_time: bool, @@ -46,7 +45,6 @@ impl ParsedDateTime { second: 0, microsecond: 0, offset: None, - has_offset: false, tzname: None, has_date: false, has_time: false,