pub trait BlockDate: Eq + Ord + Clone {
    fn from_epoch_slot_id(epoch: u32, slot_id: u32) -> Self;
}
Expand description

A trait representing block dates.

Required Methods

Implementors