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

A trait representing block dates.

Required Methods§

source

fn from_epoch_slot_id(epoch: u32, slot_id: u32) -> Self

Object Safety§

This trait is not object safe.

Implementors§