Struct everscale_types::models::config::BlockParamLimits
source · pub struct BlockParamLimits {
pub underload: u32,
pub soft_limit: u32,
pub hard_limit: u32,
}Expand description
Block limits parameter.
Fields§
§underload: u32Value below which the parameter is considered underloaded.
soft_limit: u32Soft limit.
hard_limit: u32Hard limit.
Implementations§
Trait Implementations§
source§impl Clone for BlockParamLimits
impl Clone for BlockParamLimits
source§fn clone(&self) -> BlockParamLimits
fn clone(&self) -> BlockParamLimits
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 BlockParamLimits
impl Debug for BlockParamLimits
source§impl<'tlb, C: CellFamily> Load<'tlb, C> for BlockParamLimits
impl<'tlb, C: CellFamily> Load<'tlb, C> for BlockParamLimits
source§impl PartialEq<BlockParamLimits> for BlockParamLimits
impl PartialEq<BlockParamLimits> for BlockParamLimits
source§fn eq(&self, other: &BlockParamLimits) -> bool
fn eq(&self, other: &BlockParamLimits) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for BlockParamLimits
impl<C: CellFamily> Store<C> for BlockParamLimits
source§fn store_into(
&self,
__builder: &mut CellBuilder<C>,
__finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, __builder: &mut CellBuilder<C>, __finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.