pub trait IntoYearly<T: TimeValue> {
    // Required method
    fn yearly(self) -> Yearly<T>;
}
Expand description

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

Required Methods§

source

fn yearly(self) -> Yearly<T>

Converts a normal date coord into a yearly one

Implementations on Foreign Types§

source§

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

source§

fn yearly(self) -> Yearly<T>

Implementors§