pub struct ShrinkStatsSub {
pub store_accounts_timing: StoreAccountsTiming,
pub rewrite_elapsed_us: Saturating<u64>,
pub create_and_insert_store_elapsed_us: Saturating<u64>,
pub unpackable_slots_count: Saturating<usize>,
pub newest_alive_packed_count: Saturating<usize>,
}
Fields§
§store_accounts_timing: StoreAccountsTiming
§rewrite_elapsed_us: Saturating<u64>
§create_and_insert_store_elapsed_us: Saturating<u64>
§unpackable_slots_count: Saturating<usize>
§newest_alive_packed_count: Saturating<usize>
Implementations§
Source§impl ShrinkStatsSub
impl ShrinkStatsSub
pub fn accumulate(&mut self, other: &Self)
Trait Implementations§
Source§impl Debug for ShrinkStatsSub
impl Debug for ShrinkStatsSub
Source§impl Default for ShrinkStatsSub
impl Default for ShrinkStatsSub
Source§fn default() -> ShrinkStatsSub
fn default() -> ShrinkStatsSub
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ShrinkStatsSub
impl RefUnwindSafe for ShrinkStatsSub
impl Send for ShrinkStatsSub
impl Sync for ShrinkStatsSub
impl Unpin for ShrinkStatsSub
impl UnwindSafe for ShrinkStatsSub
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> 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