pub trait Intervals {
    fn next(
        &self,
        env: &Env,
        boundary: BoundaryValidated,
        slot_granularity_time: u64
    ) -> (u64, SlotType); fn is_valid(&self) -> bool; }

Required Methods§

Implementors§