Struct sp_state_machine::TrieBackend
source · [−]pub struct TrieBackend<S: TrieBackendStorage<H>, H: Hasher> { /* private fields */ }
Expand description
Patricia trie-based backend. Transaction type is an overlay of changes to commit.
Implementations
pub fn update<T: IntoIterator<Item = (Option<ChildInfo>, StorageCollection)>>(
&self,
changes: T
) -> Self
pub fn update<T: IntoIterator<Item = (Option<ChildInfo>, StorageCollection)>>(
&self,
changes: T
) -> Self
Copy the state, with applied updates
pub fn insert<T: IntoIterator<Item = (Option<ChildInfo>, StorageCollection)>>(
&mut self,
changes: T
)
pub fn insert<T: IntoIterator<Item = (Option<ChildInfo>, StorageCollection)>>(
&mut self,
changes: T
)
Insert values into backend trie.
Merge trie nodes into this backend.
Apply the given transaction to this backend and set the root to the given value.
Get backend storage reference.
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,
impl<S: TrieBackendStorage<H>, H: Hasher> Backend<H> for TrieBackend<S, H> where
H::Out: Ord + Codec,
type Error = DefaultError
type Error = DefaultError
An error type when fetching data is not possible.
type Transaction = S::Overlay
type Transaction = S::Overlay
Storage changes to be applied if committing
type TrieBackendStorage = S
type TrieBackendStorage = S
Type of trie backend storage.
Get keyed storage or None if there is nothing associated.
fn child_storage(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<StorageValue>, Self::Error>
fn child_storage(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<StorageValue>, Self::Error>
Get keyed child storage or None if there is nothing associated.
Return the next key in storage in lexicographic order or None
if there is no value.
fn next_child_storage_key(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<StorageKey>, Self::Error>
fn next_child_storage_key(
&self,
child_info: &ChildInfo,
key: &[u8]
) -> Result<Option<StorageKey>, Self::Error>
Return the next key in child storage in lexicographic order or None
if there is no value.
Retrieve all entries keys which start with the given prefix and
call f
for each of those keys. Read more
Retrieve all entries keys and values of which start with the given prefix and
call f
for each of those keys. Read more
Iterate over storage starting at key, for a given prefix and child trie.
Aborts as soon as f
returns false.
Warning, this fails at first error when usual iteration skips errors.
If allow_missing
is true, iteration stops when it reaches a missing trie node.
Otherwise an error is produced. Read more
Retrieve all entries keys of storage and call f
for each of those keys.
Aborts as soon as f
returns false. Read more
Retrieve all child entries keys which start with the given prefix and
call f
for each of those keys. Read more
Get all key/value pairs into a Vec.
Get all keys with given prefix
Calculate the storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. Does not include child storage updates. Read more
Calculate the child storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. The second argument is true if child storage root equals default storage root. Read more
Try convert into trie backend.
Register stats from overlay of state machine. Read more
Query backend usage statistics (i/o, memory) Read more
Get keyed storage value hash or None if there is nothing associated.
Get child keyed storage value hash or None if there is nothing associated.
true if a key exists in storage.
true if a key exists in child storage.
Get all keys of child storage with given prefix
Calculate the storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. Does include child storage updates. Read more
fn commit(
&self,
_: H::Out,
_: Self::Transaction,
_: StorageCollection,
_: ChildStorageCollection
) -> Result<(), Self::Error>
fn commit(
&self,
_: H::Out,
_: Self::Transaction,
_: StorageCollection,
_: ChildStorageCollection
) -> Result<(), Self::Error>
Commit given transaction to storage.
Get the read/write count of the db
fn get_whitelist(&self) -> Vec<TrackedStorageKey>ⓘ
fn get_whitelist(&self) -> Vec<TrackedStorageKey>ⓘ
Get the whitelist for tracking db reads/writes
Update the whitelist for tracking db reads/writes
Estimate proof size
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl<S, H> !RefUnwindSafe for TrieBackend<S, H>
impl<S, H> Send for TrieBackend<S, H>
impl<S, H> Sync for TrieBackend<S, H>
impl<S, H> !UnwindSafe for TrieBackend<S, H>
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘimpl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘimpl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;
impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more
The counterpart to unchecked_from
.
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more