Bug fix
This commit is contained in:
parent
630ca3fa0f
commit
bd0cc62afa
1 changed files with 5 additions and 4 deletions
|
@ -141,10 +141,11 @@ impl TryInto<NaiveDateTime> for DateTime {
|
||||||
type Error = ();
|
type Error = ();
|
||||||
|
|
||||||
fn try_into(self) -> Result<NaiveDateTime, Self::Error> {
|
fn try_into(self) -> Result<NaiveDateTime, Self::Error> {
|
||||||
Ok(NaiveDateTime::new(
|
let date = NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into())
|
||||||
NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into())?,
|
.ok_or(())?;
|
||||||
NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into())?,
|
let time = NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into())
|
||||||
))
|
.ok_or(())?;
|
||||||
|
Ok(NaiveDateTime::new(date, time))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue