pub struct TreeUpdateBatch {
pub node_batch: NodeBatch,
pub stale_node_index_batch: StaleNodeIndexBatch,
pub node_stats: Vec<NodeStats>,
}Expand description
This is a wrapper of NodeBatch,
StaleNodeIndexBatch and some stats of nodes that represents
the incremental updates of a tree and pruning indices after applying a write set,
which is a vector of hashed_account_address and new_value pairs.
Fields§
§node_batch: NodeBatch§stale_node_index_batch: StaleNodeIndexBatch§node_stats: Vec<NodeStats>Trait Implementations§
Source§impl Clone for TreeUpdateBatch
impl Clone for TreeUpdateBatch
Source§fn clone(&self) -> TreeUpdateBatch
fn clone(&self) -> TreeUpdateBatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TreeUpdateBatch
impl Debug for TreeUpdateBatch
Source§impl Decode for TreeUpdateBatch
impl Decode for TreeUpdateBatch
Source§fn decode_ext(
reader: &mut impl Read,
dedupe_decoder: Option<&mut DedupeDecoder>,
) -> Result<Self>
fn decode_ext( reader: &mut impl Read, dedupe_decoder: Option<&mut DedupeDecoder>, ) -> Result<Self>
Source§fn decode_len(reader: &mut impl Read) -> Result<usize, Error>
fn decode_len(reader: &mut impl Read) -> Result<usize, Error>
Decodes a collection length previously encoded with
Encode::encode_len.Source§fn decode_discriminant(reader: &mut impl Read) -> Result<usize, Error>
fn decode_discriminant(reader: &mut impl Read) -> Result<usize, Error>
Decodes an enum discriminant previously encoded with
Encode::encode_discriminant. Read moreSource§impl Default for TreeUpdateBatch
impl Default for TreeUpdateBatch
Source§fn default() -> TreeUpdateBatch
fn default() -> TreeUpdateBatch
Returns the “default value” for a type. Read more
Source§impl Encode for TreeUpdateBatch
impl Encode for TreeUpdateBatch
Source§fn encode_ext(
&self,
writer: &mut impl Write,
dedupe_encoder: Option<&mut DedupeEncoder>,
) -> Result<usize>
fn encode_ext( &self, writer: &mut impl Write, dedupe_encoder: Option<&mut DedupeEncoder>, ) -> Result<usize>
Source§fn encode_len(len: usize, writer: &mut impl Write) -> Result<usize, Error>
fn encode_len(len: usize, writer: &mut impl Write) -> Result<usize, Error>
Encodes a collection length in a compact form.
impl Eq for TreeUpdateBatch
Source§impl PartialEq for TreeUpdateBatch
impl PartialEq for TreeUpdateBatch
Source§fn eq(&self, other: &TreeUpdateBatch) -> bool
fn eq(&self, other: &TreeUpdateBatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TreeUpdateBatch
Auto Trait Implementations§
impl Freeze for TreeUpdateBatch
impl RefUnwindSafe for TreeUpdateBatch
impl Send for TreeUpdateBatch
impl Sync for TreeUpdateBatch
impl Unpin for TreeUpdateBatch
impl UnsafeUnpin for TreeUpdateBatch
impl UnwindSafe for TreeUpdateBatch
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more