Trait sp_trie::HashDBT

source ·
pub trait HashDBT<H, T>: Send + Sync + AsHashDB<H, T>
where H: Hasher,
{ // Required methods fn get( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> Option<T>; fn contains( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> bool; fn insert( &mut self, prefix: (&[u8], Option<u8>), value: &[u8], ) -> <H as Hasher>::Out; fn emplace( &mut self, key: <H as Hasher>::Out, prefix: (&[u8], Option<u8>), value: T, ); fn remove(&mut self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>)); }
Expand description

Various re-exports from the hash-db crate. Trait modelling datastore keyed by a hash defined by the Hasher.

Required Methods§

source

fn get( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> Option<T>

Look up a given hash into the bytes that hash to it, returning None if the hash is not known.

source

fn contains( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> bool

Check for the existence of a hash-key.

source

fn insert( &mut self, prefix: (&[u8], Option<u8>), value: &[u8], ) -> <H as Hasher>::Out

Insert a datum item into the DB and return the datum’s hash for a later lookup. Insertions are counted and the equivalent number of remove()s must be performed before the data is considered dead.

source

fn emplace( &mut self, key: <H as Hasher>::Out, prefix: (&[u8], Option<u8>), value: T, )

Like insert(), except you provide the key and the data is all moved.

source

fn remove(&mut self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>))

Remove a datum previously inserted. Insertions can be “owed” such that the same number of insert()s may happen without the data being eventually being inserted into the DB. It can be “owed” more than once.

Trait Implementations§

source§

impl<'a, H, T> AsHashDB<H, T> for &'a mut dyn HashDB<H, T>
where H: Hasher,

source§

fn as_hash_db(&self) -> &dyn HashDB<H, T>

Perform upcast to HashDB for anything that derives from HashDB.
source§

fn as_hash_db_mut<'b>(&'b mut self) -> &'b mut dyn HashDB<H, T>

Perform mutable upcast to HashDB for anything that derives from HashDB.
source§

impl<'a, H, T> HashDBRef<H, T> for &'a dyn HashDB<H, T>
where H: Hasher,

source§

fn get( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> Option<T>

Look up a given hash into the bytes that hash to it, returning None if the hash is not known.
source§

fn contains( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> bool

Check for the existance of a hash-key.
source§

impl<'a, H, T> HashDBRef<H, T> for &'a mut dyn HashDB<H, T>
where H: Hasher,

source§

fn get( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> Option<T>

Look up a given hash into the bytes that hash to it, returning None if the hash is not known.
source§

fn contains( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> bool

Check for the existance of a hash-key.

Implementations on Foreign Types§

source§

impl<H, KF, T> HashDB<H, T> for MemoryDB<H, KF, T>
where H: Hasher, T: Default + PartialEq + AsRef<[u8]> + for<'a> From<&'a [u8]> + Clone + Send + Sync, KF: KeyFunction<H> + Send + Sync,

source§

fn get( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> Option<T>

source§

fn contains( &self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>), ) -> bool

source§

fn emplace( &mut self, key: <H as Hasher>::Out, prefix: (&[u8], Option<u8>), value: T, )

source§

fn insert( &mut self, prefix: (&[u8], Option<u8>), value: &[u8], ) -> <H as Hasher>::Out

source§

fn remove(&mut self, key: &<H as Hasher>::Out, prefix: (&[u8], Option<u8>))

Implementors§

source§

impl<'a, DB, H, T> HashDB<H, T> for KeySpacedDBMut<'a, DB, H>
where DB: HashDB<H, T>, H: Hasher, T: Default + PartialEq<T> + for<'b> From<&'b [u8]> + Clone + Send + Sync,