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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".