fix: Use try into implementation for from_time

This commit is contained in:
Kyle Bloom 2023-01-31 13:54:29 +00:00 committed by Marli Frost
parent 3f770178ec
commit c2adaf7ee0

View file

@ -173,18 +173,9 @@ impl DateTime {
#[allow(clippy::result_unit_err)]
#[deprecated(note = "use `DateTime::try_from()`")]
pub fn from_time(dt: OffsetDateTime) -> Result<DateTime, ()> {
if dt.year() >= 1980 && dt.year() <= 2107 {
Ok(DateTime {
year: (dt.year()) as u16,
month: (dt.month()) as u8,
day: dt.day(),
hour: dt.hour(),
minute: dt.minute(),
second: dt.second(),
})
} else {
Err(())
}
use std::convert::TryInto;
dt.try_into().map_err(|_err| ())
}
/// Gets the time portion of this datetime in the msdos representation