refactor: Convert impl TryInto<NaiveDateTime> for DateTime
to impl TryFrom<DateTime> for NaiveDateTime
(#136)
This commit is contained in:
parent
2148580a27
commit
3afe549161
1 changed files with 4 additions and 4 deletions
|
@ -108,14 +108,14 @@ impl TryFrom<NaiveDateTime> for DateTime {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "chrono")]
|
#[cfg(feature = "chrono")]
|
||||||
impl TryInto<NaiveDateTime> for DateTime {
|
impl TryFrom<DateTime> for NaiveDateTime {
|
||||||
type Error = DateTimeRangeError;
|
type Error = DateTimeRangeError;
|
||||||
|
|
||||||
fn try_into(self) -> Result<NaiveDateTime, Self::Error> {
|
fn try_from(value: DateTime) -> Result<Self, Self::Error> {
|
||||||
let date = NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into())
|
let date = NaiveDate::from_ymd_opt(value.year.into(), value.month.into(), value.day.into())
|
||||||
.ok_or(DateTimeRangeError)?;
|
.ok_or(DateTimeRangeError)?;
|
||||||
let time =
|
let time =
|
||||||
NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into())
|
NaiveTime::from_hms_opt(value.hour.into(), value.minute.into(), value.second.into())
|
||||||
.ok_or(DateTimeRangeError)?;
|
.ok_or(DateTimeRangeError)?;
|
||||||
Ok(NaiveDateTime::new(date, time))
|
Ok(NaiveDateTime::new(date, time))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue