fuel_core::database::genesis_progress

Trait GenesisProgressInspect

source
pub trait GenesisProgressInspect<Description> {
    // Required method
    fn genesis_progress(&self, key: &str) -> Option<usize>;
}

Required Methods§

source

fn genesis_progress(&self, key: &str) -> Option<usize>

Implementors§

source§

impl<S, DbDesc> GenesisProgressInspect<DbDesc> for S
where S: StorageInspect<GenesisMetadata<DbDesc>, Error = Error>, DbDesc: DatabaseDescription,