Struct forest_actor::util::BalanceTable[][src]

pub struct BalanceTable<'a, BS>(_);

Balance table which handles getting and updating token balances specifically

Implementations

impl<'a, BS> BalanceTable<'a, BS> where
    BS: BlockStore
[src]

pub fn new(bs: &'a BS) -> Self[src]

Initializes a new empty balance table

pub fn from_root(bs: &'a BS, cid: &Cid) -> Result<Self, Error>[src]

Initializes a balance table from a root Cid

pub fn root(&mut self) -> Result<Cid, Error>[src]

Retrieve root from balance table

pub fn get(&self, key: &Address) -> Result<TokenAmount, Box<dyn StdError>>[src]

Gets token amount for given address in balance table

pub fn add(
    &mut self,
    key: &Address,
    value: &TokenAmount
) -> Result<(), Box<dyn StdError>>
[src]

Adds token amount to previously initialized account.

pub fn subtract_with_minimum(
    &mut self,
    key: &Address,
    req: &TokenAmount,
    floor: &TokenAmount
) -> Result<TokenAmount, Box<dyn StdError>>
[src]

Subtracts up to the specified amount from a balance, without reducing the balance below some minimum. Returns the amount subtracted (always positive or zero).

pub fn must_subtract(
    &mut self,
    key: &Address,
    req: &TokenAmount
) -> Result<(), Box<dyn StdError>>
[src]

Subtracts value from a balance, and errors if full amount was not substracted.

pub fn total(&self) -> Result<TokenAmount, Box<dyn StdError>>[src]

Returns total balance held by this balance table

Auto Trait Implementations

impl<'a, BS> RefUnwindSafe for BalanceTable<'a, BS> where
    BS: RefUnwindSafe

impl<'a, BS> Send for BalanceTable<'a, BS> where
    BS: Sync

impl<'a, BS> !Sync for BalanceTable<'a, BS>

impl<'a, BS> Unpin for BalanceTable<'a, BS>

impl<'a, BS> UnwindSafe for BalanceTable<'a, BS> where
    BS: RefUnwindSafe

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> Pointable for T

type Init = T

The type for initializers.

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