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> Load<'tlb> for StoragePhase
impl<'tlb> Load<'tlb> 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 Store for StoragePhase
impl Store for StoragePhase
source§fn store_into(
&self,
__builder: &mut CellBuilder,
__finalizer: &mut dyn Finalizer
) -> Result<(), Error>
fn store_into( &self, __builder: &mut CellBuilder, __finalizer: &mut dyn Finalizer ) -> Result<(), Error>
Tries to store itself into the cell builder.