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

Determine the last day in a given date’s month

Required Methods

Finds the last date in a given calendar month

Implementors