html_site_generator/
datetime.rs1use chrono::NaiveDate;
2
3#[derive(Debug)]
4pub struct DateTime {
5 inner: NaiveDate,
6}
7
8impl DateTime {
9 pub fn from_ymd_opt(year: i32, month: u32, day: u32) -> Option<DateTime> {
10 Some(DateTime {
11 inner: NaiveDate::from_ymd_opt(year, month, day)?,
12 })
13 }
14}