Struct everscale_types::models::transaction::CreditPhase
source · pub struct CreditPhase<C: CellFamily> {
pub due_fees_collected: Option<Tokens>,
pub credit: CurrencyCollection<C>,
}Expand description
Credit phase info.
At this phase message balance is added to the account balance.
Fields§
§due_fees_collected: Option<Tokens>Amount of tokens paid for the debt.
credit: CurrencyCollection<C>Amount of tokens added to the account balance from the remaining message balance.
Trait Implementations§
source§impl<C: CellFamily> Clone for CreditPhase<C>
impl<C: CellFamily> Clone for CreditPhase<C>
source§impl<C: CellFamily> Debug for CreditPhase<C>
impl<C: CellFamily> Debug for CreditPhase<C>
source§impl<'tlb, C: CellFamily> Load<'tlb, C> for CreditPhase<C>
impl<'tlb, C: CellFamily> Load<'tlb, C> for CreditPhase<C>
source§impl<C: CellFamily> PartialEq<CreditPhase<C>> for CreditPhase<C>
impl<C: CellFamily> PartialEq<CreditPhase<C>> for CreditPhase<C>
source§impl<C: CellFamily> Store<C> for CreditPhase<C>
impl<C: CellFamily> Store<C> for CreditPhase<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.