Trait IntoYearly

Source
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§