pub trait IntoMonthly<T: TimeValue> {
    // Required method
    fn monthly(self) -> Monthly<T>;
}
Expand description

The trait that converts a normal date coord into a monthly one

Required Methods§

source

fn monthly(self) -> Monthly<T>

Converts a normal date coord into a monthly one

Implementations on Foreign Types§

source§

impl<T: TimeValue> IntoMonthly<T> for Range<T>

source§

fn monthly(self) -> Monthly<T>

Implementors§