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

Determine the last day in a given date’s month

Required Methods§

source

fn last_day_of_month(&self) -> NaiveDate

Finds the last date in a given calendar month

Implementors§