From 3f770178ec0317967edc09bbdc746552f6a20478 Mon Sep 17 00:00:00 2001 From: Kyle Bloom Date: Tue, 31 Jan 2023 13:53:40 +0000 Subject: [PATCH] fix: Change error type to unit-like struct --- src/result.rs | 16 +++++++--------- src/types.rs | 6 +++--- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/src/result.rs b/src/result.rs index 070834a4..00d558cb 100644 --- a/src/result.rs +++ b/src/result.rs @@ -84,17 +84,15 @@ impl From for io::Error { /// Error type for time parsing #[derive(Debug)] -pub enum ZipDateTimeError { - /// The date was on or before 1980, or on or after 2107 - DateTimeOutOfBounds, -} +pub struct DateTimeRangeError; -impl fmt::Display for ZipDateTimeError { +impl fmt::Display for DateTimeRangeError { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { - match self { - ZipDateTimeError::DateTimeOutOfBounds => write!(fmt, "datetime out of bounds"), - } + write!( + fmt, + "a date could not be represented within the bounds the MS-DOS date range (1980-2107)" + ) } } -impl Error for ZipDateTimeError {} +impl Error for DateTimeRangeError {} diff --git a/src/types.rs b/src/types.rs index 609959de..ac1b9a1d 100644 --- a/src/types.rs +++ b/src/types.rs @@ -44,7 +44,7 @@ mod atomic { } #[cfg(feature = "time")] -use crate::result::ZipDateTimeError; +use crate::result::DateTimeRangeError; #[cfg(feature = "time")] use time::{error::ComponentRange, Date, Month, OffsetDateTime, PrimitiveDateTime, Time}; @@ -259,7 +259,7 @@ impl DateTime { #[cfg(feature = "time")] impl TryFrom for DateTime { - type Error = ZipDateTimeError; + type Error = DateTimeRangeError; fn try_from(dt: OffsetDateTime) -> Result { if dt.year() >= 1980 && dt.year() <= 2107 { @@ -272,7 +272,7 @@ impl TryFrom for DateTime { second: dt.second(), }) } else { - Err(ZipDateTimeError::DateTimeOutOfBounds) + Err(DateTimeRangeError) } } }