pub trait IsLastWeekday: Datelike {
    fn is_last_weekday(&self) -> bool { ... }
}
Expand description

Trait to determine if a NaiveDate is the last weekday of the month

Provided Methods

Determine if a date is the last weekday of the month

Implementors