pub trait GetCalendarSlot<C: CalendarProtocol> {
    // Required method
    fn get_calendar(&self) -> CalendarSlot<C>;
}
Expand description

A trait for retrieving an internal calendar slice.

Required Methods§

source

fn get_calendar(&self) -> CalendarSlot<C>

Returns the CalendarSlot<C> value of the implementor.

Implementors§