Struct everscale_types::models::shard::DepthBalanceInfo
source · pub struct DepthBalanceInfo<C: CellFamily> {
pub split_depth: u8,
pub balance: CurrencyCollection<C>,
}Expand description
Intermediate balance info.
Fields§
§split_depth: u8Depth for which the balance was calculated.
balance: CurrencyCollection<C>Total balance for a subtree.
Implementations§
source§impl<C: CellFamily> DepthBalanceInfo<C>
impl<C: CellFamily> DepthBalanceInfo<C>
Trait Implementations§
source§impl<C: CellFamily> Clone for DepthBalanceInfo<C>
impl<C: CellFamily> Clone for DepthBalanceInfo<C>
source§impl<C: CellFamily> Debug for DepthBalanceInfo<C>
impl<C: CellFamily> Debug for DepthBalanceInfo<C>
source§impl<'a, C: CellFamily> Load<'a, C> for DepthBalanceInfo<C>
impl<'a, C: CellFamily> Load<'a, C> for DepthBalanceInfo<C>
source§impl<C: CellFamily> PartialEq<DepthBalanceInfo<C>> for DepthBalanceInfo<C>
impl<C: CellFamily> PartialEq<DepthBalanceInfo<C>> for DepthBalanceInfo<C>
source§impl<C: CellFamily> Store<C> for DepthBalanceInfo<C>
impl<C: CellFamily> Store<C> for DepthBalanceInfo<C>
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.