Struct clarity_repl::clarity::database::structures::STXBalanceSnapshot[][src]

pub struct STXBalanceSnapshot<'db, 'conn> { /* fields omitted */ }

Lifetime-limited handle to an uncommitted balance structure. All balance mutations (debits, credits, locks, unlocks) must go through this structure.

Implementations

impl<'db, 'conn> STXBalanceSnapshot<'db, 'conn>[src]

pub fn new(
    principal: &PrincipalData,
    balance: STXBalance,
    burn_height: u64,
    db_ref: &'conn mut ClarityDatabase<'db>
) -> STXBalanceSnapshot<'db, 'conn>
[src]

pub fn balance(&self) -> &STXBalance[src]

pub fn save(self)[src]

pub fn transfer_to(self, recipient: &PrincipalData, amount: u128) -> Result<()>[src]

pub fn get_available_balance(&self) -> u128[src]

pub fn has_locked_tokens(&self) -> bool[src]

pub fn has_unlockable_tokens(&self) -> bool[src]

pub fn can_transfer(&self, amount: u128) -> bool[src]

pub fn debit(&mut self, amount: u128)[src]

pub fn credit(&mut self, amount: u128)[src]

pub fn set_balance(&mut self, balance: STXBalance)[src]

pub fn lock_tokens(&mut self, amount_to_lock: u128, unlock_burn_height: u64)[src]

Auto Trait Implementations

impl<'db, 'conn> !RefUnwindSafe for STXBalanceSnapshot<'db, 'conn>

impl<'db, 'conn> !Send for STXBalanceSnapshot<'db, 'conn>

impl<'db, 'conn> !Sync for STXBalanceSnapshot<'db, 'conn>

impl<'db, 'conn> Unpin for STXBalanceSnapshot<'db, 'conn> where
    'db: 'conn, 

impl<'db, 'conn> !UnwindSafe for STXBalanceSnapshot<'db, 'conn>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,