pub struct DeltaMptIterator {
    pub mpt: Arc<DeltaMpt>,
    pub maybe_root_node: Option<NodeRefDeltaMpt>,
}Fields§
§mpt: Arc<DeltaMpt>§maybe_root_node: Option<NodeRefDeltaMpt>Implementations§
Source§impl DeltaMptIterator
 
impl DeltaMptIterator
pub fn iterate<'a, DeltaMptDumper: KVInserter<MptKeyValue>>( &self, dumper: &mut DeltaMptDumper, ) -> Result<()>
Trait Implementations§
Source§impl Clone for DeltaMptIterator
 
impl Clone for DeltaMptIterator
Source§fn clone(&self) -> DeltaMptIterator
 
fn clone(&self) -> DeltaMptIterator
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreAuto Trait Implementations§
impl Freeze for DeltaMptIterator
impl !RefUnwindSafe for DeltaMptIterator
impl Send for DeltaMptIterator
impl Sync for DeltaMptIterator
impl Unpin for DeltaMptIterator
impl !UnwindSafe for DeltaMptIterator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more