pub trait Block0DataSource {
    // Required methods
    fn slot_duration(&self) -> Result<Duration, Block0Error>;
    fn slots_per_epoch(&self) -> Result<u32, Block0Error>;
    fn start_time(&self) -> Result<SystemTime, Block0Error>;
}

Required Methods§

Implementors§