(v: i32)
| 73 | /// converts a `i32` representing a `time32(s)` to [`NaiveDateTime`] |
| 74 | #[inline] |
| 75 | pub fn time32s_to_time(v: i32) -> Option<NaiveTime> { |
| 76 | NaiveTime::from_num_seconds_from_midnight_opt(v as u32, 0) |
| 77 | } |
| 78 | |
| 79 | /// converts a `i32` representing a `time32(ms)` to [`NaiveDateTime`] |
| 80 | #[inline] |