pub trait IntoAnyCalendar: Calendar {
    fn to_any(self) -> AnyCalendar;
    fn to_any_cloned(&self) -> AnyCalendar;
    fn date_to_any(&self, d: &Self::DateInner) -> AnyDateInner;
}
Expand description

Trait for calendars that may be converted to AnyCalendar

Required methods

Convert this calendar into an AnyCalendar, moving it

You should not need to call this method directly

Convert this calendar into an AnyCalendar, cloning it

You should not need to call this method directly

Convert a date for this calendar into an AnyDateInner

You should not need to call this method directly

Implementors