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