pub trait IntoMonthly<T>
where 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> IntoMonthly<T> for Range<T>
where T: TimeValue,

source§

fn monthly(self) -> Monthly<T>

Implementors§