Struct sp_state_machine::TrieBackend [−][src]
pub struct TrieBackend<S: TrieBackendStorage<H>, H: Hasher> { /* fields omitted */ }
Patricia trie-based backend. Transaction type is an overlay of changes to commit.
Implementations
impl<H: Hasher> TrieBackend<MemoryDB<H>, H> where
H::Out: Codec + Ord,
[src]
impl<H: Hasher> TrieBackend<MemoryDB<H>, H> where
H::Out: Codec + Ord,
[src]pub fn update<T: IntoIterator<Item = (Option<ChildInfo>, StorageCollection)>>(
&self,
changes: T
) -> Self
[src]
&self,
changes: T
) -> Self
Copy the state, with applied updates
pub fn insert<T: IntoIterator<Item = (Option<ChildInfo>, StorageCollection)>>(
&mut self,
changes: T
)
[src]
&mut self,
changes: T
)
Insert values into backend trie.
pub fn update_backend(&self, root: H::Out, changes: MemoryDB<H>) -> Self
[src]
Merge trie nodes into this backend.
pub fn apply_transaction(&mut self, root: H::Out, transaction: MemoryDB<H>)
[src]
Apply the given transaction to this backend and set the root to the given value.
pub fn eq(&self, other: &Self) -> bool
[src]
Compare with another in-memory backend.
impl<S: TrieBackendStorage<H>, H: Hasher> TrieBackend<S, H> where
H::Out: Codec,
[src]
impl<S: TrieBackendStorage<H>, H: Hasher> TrieBackend<S, H> where
H::Out: Codec,
[src]pub fn new(storage: S, root: H::Out) -> Self
[src]
Create new trie-based backend.
pub fn essence(&self) -> &TrieBackendEssence<S, H>
[src]
Get backend essence reference.
pub fn backend_storage(&self) -> &S
[src]
Get backend storage reference.
pub fn backend_storage_mut(&mut self) -> &mut S
[src]
Get backend storage reference.
pub fn root(&self) -> &H::Out
[src]
Get trie root.
pub fn into_storage(self) -> S
[src]
Consumes self and returns underlying storage.
Trait Implementations
impl<S: TrieBackendStorage<H>, H: Hasher> Backend<H> for TrieBackend<S, H> where
H::Out: Ord + Codec,
[src]
impl<S: TrieBackendStorage<H>, H: Hasher> Backend<H> for TrieBackend<S, H> where
H::Out: Ord + Codec,
[src]type Error = DefaultError
An error type when fetching data is not possible.
type Transaction = S::Overlay
Storage changes to be applied if committing
type TrieBackendStorage = S
Type of trie backend storage.
fn storage(&self, key: &[u8]) -> Result<Option<StorageValue>, Self::Error>
[src]
fn child_storage(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<StorageValue>, Self::Error>
[src]
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<StorageValue>, Self::Error>
fn next_storage_key(
&self,
key: &[u8]
) -> Result<Option<StorageKey>, Self::Error>
[src]
&self,
key: &[u8]
) -> Result<Option<StorageKey>, Self::Error>
fn next_child_storage_key(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<StorageKey>, Self::Error>
[src]
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<StorageKey>, Self::Error>
fn for_keys_with_prefix<F: FnMut(&[u8])>(&self, prefix: &[u8], f: F)
[src]
fn for_key_values_with_prefix<F: FnMut(&[u8], &[u8])>(
&self,
prefix: &[u8],
f: F
)
[src]
&self,
prefix: &[u8],
f: F
)
fn apply_to_child_keys_while<F: FnMut(&[u8]) -> bool>(
&self,
child_info: &ChildInfo,
f: F
)
[src]
&self,
child_info: &ChildInfo,
f: F
)
fn for_child_keys_with_prefix<F: FnMut(&[u8])>(
&self,
child_info: &ChildInfo,
prefix: &[u8],
f: F
)
[src]
&self,
child_info: &ChildInfo,
prefix: &[u8],
f: F
)
fn pairs(&self) -> Vec<(StorageKey, StorageValue)>
[src]
fn keys(&self, prefix: &[u8]) -> Vec<StorageKey>
[src]
fn storage_root<'a>(
&self,
delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>
) -> (H::Out, Self::Transaction) where
H::Out: Ord,
[src]
&self,
delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>
) -> (H::Out, Self::Transaction) where
H::Out: Ord,
fn child_storage_root<'a>(
&self,
child_info: &ChildInfo,
delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>
) -> (H::Out, bool, Self::Transaction) where
H::Out: Ord,
[src]
&self,
child_info: &ChildInfo,
delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>
) -> (H::Out, bool, Self::Transaction) where
H::Out: Ord,
fn as_trie_backend(
&mut self
) -> Option<&TrieBackend<Self::TrieBackendStorage, H>>
[src]
&mut self
) -> Option<&TrieBackend<Self::TrieBackendStorage, H>>
fn register_overlay_stats(&mut self, _stats: &StateMachineStats)
[src]
fn usage_info(&self) -> UsageInfo
[src]
fn wipe(&self) -> Result<(), Self::Error>
[src]
fn storage_hash(&self, key: &[u8]) -> Result<Option<H::Out>, Self::Error>
[src]
fn child_storage_hash(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<H::Out>, Self::Error>
[src]
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<H::Out>, Self::Error>
fn exists_storage(&self, key: &[u8]) -> Result<bool, Self::Error>
[src]
fn exists_child_storage(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<bool, Self::Error>
[src]
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<bool, Self::Error>
fn child_keys(&self, child_info: &ChildInfo, prefix: &[u8]) -> Vec<StorageKey>
[src]
fn full_storage_root<'a>(
&self,
delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>,
child_deltas: impl Iterator<Item = (&'a ChildInfo, impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>)>
) -> (H::Out, Self::Transaction) where
H::Out: Ord + Encode,
[src]
&self,
delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>,
child_deltas: impl Iterator<Item = (&'a ChildInfo, impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>)>
) -> (H::Out, Self::Transaction) where
H::Out: Ord + Encode,
fn commit(
&self,
_: H::Out,
_: Self::Transaction,
_: StorageCollection,
_: ChildStorageCollection
) -> Result<(), Self::Error>
[src]
&self,
_: H::Out,
_: Self::Transaction,
_: StorageCollection,
_: ChildStorageCollection
) -> Result<(), Self::Error>
fn read_write_count(&self) -> (u32, u32, u32, u32)
[src]
fn reset_read_write_count(&self)
[src]
fn get_whitelist(&self) -> Vec<TrackedStorageKey>
[src]
fn set_whitelist(&self, _: Vec<TrackedStorageKey>)
[src]
impl<H: Hasher> Clone for TrieBackend<MemoryDB<H>, H> where
H::Out: Codec + Ord,
[src]
impl<H: Hasher> Clone for TrieBackend<MemoryDB<H>, H> where
H::Out: Codec + Ord,
[src]fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<S: TrieBackendStorage<H>, H: Hasher> Debug for TrieBackend<S, H>
[src]
impl<S: TrieBackendStorage<H>, H: Hasher> Debug for TrieBackend<S, H>
[src]impl<H: Hasher> From<BTreeMap<Vec<u8, Global>, Vec<u8, Global>>> for TrieBackend<MemoryDB<H>, H> where
H::Out: Codec + Ord,
[src]
impl<H: Hasher> From<BTreeMap<Vec<u8, Global>, Vec<u8, Global>>> for TrieBackend<MemoryDB<H>, H> where
H::Out: Codec + Ord,
[src]fn from(inner: BTreeMap<StorageKey, StorageValue>) -> Self
[src]
impl<H: Hasher> From<HashMap<Option<ChildInfo>, BTreeMap<Vec<u8, Global>, Vec<u8, Global>>, RandomState>> for TrieBackend<MemoryDB<H>, H> where
H::Out: Codec + Ord,
[src]
impl<H: Hasher> From<HashMap<Option<ChildInfo>, BTreeMap<Vec<u8, Global>, Vec<u8, Global>>, RandomState>> for TrieBackend<MemoryDB<H>, H> where
H::Out: Codec + Ord,
[src]fn from(
inner: HashMap<Option<ChildInfo>, BTreeMap<StorageKey, StorageValue>>
) -> Self
[src]
inner: HashMap<Option<ChildInfo>, BTreeMap<StorageKey, StorageValue>>
) -> Self
Auto Trait Implementations
impl<S, H> RefUnwindSafe for TrieBackend<S, H> where
S: RefUnwindSafe,
<H as Hasher>::Out: RefUnwindSafe,
S: RefUnwindSafe,
<H as Hasher>::Out: RefUnwindSafe,
impl<S, H> Send for TrieBackend<S, H>
impl<S, H> Sync for TrieBackend<S, H>
impl<S, H> Unpin for TrieBackend<S, H> where
S: Unpin,
<H as Hasher>::Out: Unpin,
S: Unpin,
<H as Hasher>::Out: Unpin,
impl<S, H> UnwindSafe for TrieBackend<S, H> where
S: UnwindSafe,
<H as Hasher>::Out: UnwindSafe,
S: UnwindSafe,
<H as Hasher>::Out: UnwindSafe,
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,