Skip to main content

IntoMonthly

Trait IntoMonthly 

Source
pub trait IntoMonthly<T: TimeValue> {
    // Required method
    fn monthly(self) -> Monthly<T>;
}
Expand description

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

Required Methods§

Source

fn monthly(self) -> Monthly<T>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

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

Source§

fn monthly(self) -> Monthly<T>

Implementors§