TrieDBMutBuilder

Struct TrieDBMutBuilder 

Source
pub struct TrieDBMutBuilder<'db, L: TrieLayout> { /* private fields */ }
Expand description

A builder for creating a TrieDBMut.

Implementations§

Source§

impl<'db, L: TrieLayout> TrieDBMutBuilder<'db, L>

Source

pub fn new( db: &'db mut dyn HashDB<L::Hash, DBValue>, root: &'db mut TrieHash<L>, ) -> Self

Create a builder for constructing a new trie with the backing database db and empty root.

Source

pub fn from_existing( db: &'db mut dyn HashDB<L::Hash, DBValue>, root: &'db mut TrieHash<L>, ) -> Self

Create a builder for constructing a new trie with the backing database db and root.

This doesn’t check if root exists in the given db. If root doesn’t exist it will fail when trying to lookup any key.

Source

pub fn with_cache(self, cache: &'db mut dyn TrieCache<L::Codec>) -> Self

Use the given cache for the db.

Source

pub fn with_optional_cache<'cache: 'db>( self, cache: Option<&'cache mut dyn TrieCache<L::Codec>>, ) -> Self

Use the given optional cache for the db.

Source

pub fn with_recorder( self, recorder: &'db mut dyn TrieRecorder<TrieHash<L>>, ) -> Self

Use the given recorder to record trie accesses.

Source

pub fn with_optional_recorder<'recorder: 'db>( self, recorder: Option<&'recorder mut dyn TrieRecorder<TrieHash<L>>>, ) -> Self

Use the given optional recorder to record trie accesses.

Source

pub fn disable_commit_on_drop(self) -> Self

Disable automatic commit on drop.

By default, TrieDBMut automatically commits changes when dropped. Calling this method disables that behavior, requiring explicit calls to TrieDBMut::commit to persist changes to the database.

This is useful when you want fine-grained control over when changes are committed, or when you want to avoid the performance cost of committing if you’re just doing temporary operations.

Source

pub fn build(self) -> TrieDBMut<'db, L>

Build the TrieDBMut.

By default, the returned trie will automatically commit changes when dropped. Use disable_commit_on_drop to disable this behavior.

Auto Trait Implementations§

§

impl<'db, L> Freeze for TrieDBMutBuilder<'db, L>

§

impl<'db, L> !RefUnwindSafe for TrieDBMutBuilder<'db, L>

§

impl<'db, L> !Send for TrieDBMutBuilder<'db, L>

§

impl<'db, L> !Sync for TrieDBMutBuilder<'db, L>

§

impl<'db, L> Unpin for TrieDBMutBuilder<'db, L>

§

impl<'db, L> !UnwindSafe for TrieDBMutBuilder<'db, L>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.