Trait sc_state_db::NodeDb[][src]

pub trait NodeDb {
    type Key: ?Sized;
    type Error: Debug;
    fn get(&self, key: &Self::Key) -> Result<Option<DBValue>, Self::Error>;
}
Expand description

Backend database trait. Read-only.

Associated Types

Required methods

Get state trie node.

Implementors