Construct a timestamp array with new timezone
(self, timezone: impl Into<Arc<str>>)
| 1568 | |
| 1569 | /// Construct a timestamp array with new timezone |
| 1570 | pub fn with_timezone(self, timezone: impl Into<Arc<str>>) -> Self { |
| 1571 | self.with_timezone_opt(Some(timezone.into())) |
| 1572 | } |
| 1573 | |
| 1574 | /// Construct a timestamp array with UTC |
| 1575 | pub fn with_timezone_utc(self) -> Self { |