pub enum AccountShrinkThreshold {
TotalSpace {
shrink_ratio: f64,
},
IndividualStore {
shrink_ratio: f64,
},
}
Variants§
TotalSpace
Measure the total space sparseness across all candidates And select the candidates by using the top sparse account storage entries to shrink. The value is the overall shrink threshold measured as ratio of the total live bytes over the total bytes.
IndividualStore
Use the following option to shrink all stores whose alive ratio is below the specified threshold.
Trait Implementations§
source§impl Clone for AccountShrinkThreshold
impl Clone for AccountShrinkThreshold
source§fn clone(&self) -> AccountShrinkThreshold
fn clone(&self) -> AccountShrinkThreshold
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 moresource§impl Debug for AccountShrinkThreshold
impl Debug for AccountShrinkThreshold
source§impl Default for AccountShrinkThreshold
impl Default for AccountShrinkThreshold
source§fn default() -> AccountShrinkThreshold
fn default() -> AccountShrinkThreshold
Returns the “default value” for a type. Read more
impl Copy for AccountShrinkThreshold
Auto Trait Implementations§
impl Freeze for AccountShrinkThreshold
impl RefUnwindSafe for AccountShrinkThreshold
impl Send for AccountShrinkThreshold
impl Sync for AccountShrinkThreshold
impl Unpin for AccountShrinkThreshold
impl UnwindSafe for AccountShrinkThreshold
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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