pub struct IncrementalUpdateStats {
pub entity_count: usize,
pub total_deltas: usize,
pub total_full_size: usize,
pub total_delta_size: usize,
}Expand description
Incremental update statistics
Fields§
§entity_count: usizeNumber of entities
total_deltas: usizeTotal deltas
total_full_size: usizeTotal full data size
total_delta_size: usizeTotal delta size
Trait Implementations§
Source§impl Clone for IncrementalUpdateStats
impl Clone for IncrementalUpdateStats
Source§fn clone(&self) -> IncrementalUpdateStats
fn clone(&self) -> IncrementalUpdateStats
Returns a duplicate 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 IncrementalUpdateStats
impl RefUnwindSafe for IncrementalUpdateStats
impl Send for IncrementalUpdateStats
impl Sync for IncrementalUpdateStats
impl Unpin for IncrementalUpdateStats
impl UnsafeUnpin for IncrementalUpdateStats
impl UnwindSafe for IncrementalUpdateStats
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