[][src]Trait sc_state_db::NodeDb

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

type Key: ?Sized

type Error: Debug

Loading content...

Required methods

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

Get state trie node.

Loading content...

Implementors

Loading content...