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>;
}

Backend database trait. Read-only.

Associated Types

Loading content...

Required methods

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

Get state trie node.

Loading content...

Implementors

Loading content...