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

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

Required Methods

Converts a normal date coord into a yearly one

Implementations on Foreign Types

Implementors