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

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

Provided Methods§

source

fn is_last_weekday(&self) -> bool

Determine if a date is the last weekday of the month

Implementors§