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: Clone + CellFamily> Clone for CreditPhase<C>
impl<C: Clone + CellFamily> Clone for CreditPhase<C>
source§fn clone(&self) -> CreditPhase<C>
fn clone(&self) -> CreditPhase<C>
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<C: Debug + CellFamily> Debug for CreditPhase<C>
impl<C: Debug + CellFamily> Debug for CreditPhase<C>
source§impl<'a, C: CellFamily> Load<'a, C> for CreditPhase<C>
impl<'a, C: CellFamily> Load<'a, C> for CreditPhase<C>
source§impl<C: PartialEq + CellFamily> PartialEq<CreditPhase<C>> for CreditPhase<C>
impl<C: PartialEq + CellFamily> PartialEq<CreditPhase<C>> for CreditPhase<C>
source§fn eq(&self, other: &CreditPhase<C>) -> bool
fn eq(&self, other: &CreditPhase<C>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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.