pub trait FirstDayOfMonth: Datelike {
    fn first_day_of_month(&self) -> NaiveDate;
}
Expand description

Determine the first day in a given date’s month

Required Methods

Finds the first date in a given calendar month

Implementors