Struct everscale_types::models::transaction::StoragePhase
source · pub struct StoragePhase {
pub storage_fees_collected: Tokens,
pub storage_fees_due: Option<Tokens>,
pub status_change: AccountStatusChange,
}Expand description
Storage phase info.
At this phase account pays for storing its state.
Fields§
§storage_fees_collected: TokensAmount of tokens collected for storing this contract for some time.
storage_fees_due: Option<Tokens>Amount of tokens which this account owes to the network (if there was not enough balance to pay storage fee).
status_change: AccountStatusChangeAccount status change during execution of this phase.
Trait Implementations§
source§impl Clone for StoragePhase
impl Clone for StoragePhase
source§fn clone(&self) -> StoragePhase
fn clone(&self) -> StoragePhase
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 StoragePhase
impl Debug for StoragePhase
source§impl<'tlb, C: CellFamily> Load<'tlb, C> for StoragePhase
impl<'tlb, C: CellFamily> Load<'tlb, C> for StoragePhase
source§impl PartialEq<StoragePhase> for StoragePhase
impl PartialEq<StoragePhase> for StoragePhase
source§fn eq(&self, other: &StoragePhase) -> bool
fn eq(&self, other: &StoragePhase) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for StoragePhase
impl<C: CellFamily> Store<C> for StoragePhase
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.