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

pub struct STXBalance {
    pub amount_unlocked: u128,
    pub amount_locked: u128,
    pub unlock_height: u64,
}

Fields

amount_unlocked: u128amount_locked: u128unlock_height: u64

Implementations

impl STXBalance[src]

pub const size_of: usize[src]

pub fn zero() -> STXBalance[src]

pub fn initial(amount_unlocked: u128) -> STXBalance[src]

pub fn get_available_balance_at_burn_block(
    &self,
    burn_block_height: u64
) -> u128
[src]

pub fn get_locked_balance_at_burn_block(
    &self,
    burn_block_height: u64
) -> (u128, u64)
[src]

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

pub fn has_locked_tokens_at_burn_block(&self, burn_block_height: u64) -> bool[src]

pub fn has_unlockable_tokens_at_burn_block(
    &self,
    burn_block_height: u64
) -> bool
[src]

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

Trait Implementations

impl ClarityDeserializable<STXBalance> for STXBalance[src]

impl ClaritySerializable for STXBalance[src]

impl Clone for STXBalance[src]

impl Debug for STXBalance[src]

impl<'de> Deserialize<'de> for STXBalance[src]

impl PartialEq<STXBalance> for STXBalance[src]

impl Serialize for STXBalance[src]

impl StructuralPartialEq for STXBalance[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,