Trait sc_state_db::MetaDb[][src]

pub trait MetaDb {
    type Error: Debug;
    fn get_meta(&self, key: &[u8]) -> Result<Option<DBValue>, Self::Error>;
}

Backend database trait. Read-only.

Associated Types

Loading content...

Required methods

fn get_meta(&self, key: &[u8]) -> Result<Option<DBValue>, Self::Error>[src]

Get meta value, such as the journal.

Loading content...

Implementors

Loading content...