Struct everscale_types::models::transaction::CreditPhase
source · pub struct CreditPhase {
pub due_fees_collected: Option<Tokens>,
pub credit: CurrencyCollection,
}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: CurrencyCollectionAmount of tokens added to the account balance from the remaining message balance.
Trait Implementations§
source§impl Clone for CreditPhase
impl Clone for CreditPhase
source§fn clone(&self) -> CreditPhase
fn clone(&self) -> CreditPhase
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 CreditPhase
impl Debug for CreditPhase
source§impl<'tlb> Load<'tlb> for CreditPhase
impl<'tlb> Load<'tlb> for CreditPhase
source§impl PartialEq<CreditPhase> for CreditPhase
impl PartialEq<CreditPhase> for CreditPhase
source§fn eq(&self, other: &CreditPhase) -> bool
fn eq(&self, other: &CreditPhase) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Store for CreditPhase
impl Store for CreditPhase
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.
impl Eq for CreditPhase
impl StructuralEq for CreditPhase
impl StructuralPartialEq for CreditPhase
Auto Trait Implementations§
impl !RefUnwindSafe for CreditPhase
impl Send for CreditPhase
impl Sync for CreditPhase
impl Unpin for CreditPhase
impl !UnwindSafe for CreditPhase
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more