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

source§

fn yearly(self) -> Yearly<T>

Implementors§