Type Alias frame_support::traits::tokens::fungibles::Debt

source ·
pub type Debt<AccountId, B> = Imbalance<<B as Inspect<AccountId>>::AssetId, <B as Inspect<AccountId>>::Balance, <B as Balanced<AccountId>>::OnDropDebt, <B as Balanced<AccountId>>::OnDropCredit>;
Expand description

Imbalance implying that the total_issuance value is less than the sum of all account balances.

Aliased Type§

struct Debt<AccountId, B> { /* private fields */ }

Implementations

source§

impl<A: AssetId, B: Balance, OnDrop: HandleImbalanceDrop<A, B>, OppositeOnDrop: HandleImbalanceDrop<A, B>> Imbalance<A, B, OnDrop, OppositeOnDrop>

source

pub fn zero(asset: A) -> Self

source

pub fn drop_zero(self) -> Result<(), Self>

source

pub fn split(self, amount: B) -> (Self, Self)

source

pub fn extract(&mut self, amount: B) -> Self

Mutate self by extracting a new instance with at most amount value, reducing self accordingly.

source

pub fn merge(self, other: Self) -> Result<Self, (Self, Self)>

source

pub fn subsume(&mut self, other: Self) -> Result<(), Self>

source

pub fn offset( self, other: Imbalance<A, B, OppositeOnDrop, OnDrop>, ) -> Result<SameOrOther<Self, Imbalance<A, B, OppositeOnDrop, OnDrop>>, (Self, Imbalance<A, B, OppositeOnDrop, OnDrop>)>

source

pub fn peek(&self) -> B

source

pub fn asset(&self) -> A

Trait Implementations

source§

impl<A: AssetId, B: Balance, OnDrop: HandleImbalanceDrop<A, B>, OppositeOnDrop: HandleImbalanceDrop<A, B>> Debug for Imbalance<A, B, OnDrop, OppositeOnDrop>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<A: AssetId, B: Balance, OnDrop: HandleImbalanceDrop<A, B>, OppositeOnDrop: HandleImbalanceDrop<A, B>> Drop for Imbalance<A, B, OnDrop, OppositeOnDrop>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<A: AssetId, B: Balance, OnDrop: HandleImbalanceDrop<A, B>, OppositeOnDrop: HandleImbalanceDrop<A, B>> PartialEq for Imbalance<A, B, OnDrop, OppositeOnDrop>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<A: AssetId, B: Balance, OnDrop: HandleImbalanceDrop<A, B>, OppositeOnDrop: HandleImbalanceDrop<A, B>> TryDrop for Imbalance<A, B, OnDrop, OppositeOnDrop>

source§

fn try_drop(self) -> Result<(), Self>

Drop an instance cleanly. Only works if its value represents “no-operation”.

source§

impl<A: AssetId, B: Balance, OnDrop: HandleImbalanceDrop<A, B>, OppositeOnDrop: HandleImbalanceDrop<A, B>> TryMerge for Imbalance<A, B, OnDrop, OppositeOnDrop>

source§

fn try_merge(self, other: Self) -> Result<Self, (Self, Self)>

Consume self and an other to return a new instance that combines both. Errors with Err(self, other) if the imbalances cannot be merged (e.g. imbalances of different assets).
source§

impl<A: AssetId, B: Balance, OnDrop: HandleImbalanceDrop<A, B>, OppositeOnDrop: HandleImbalanceDrop<A, B>> Eq for Imbalance<A, B, OnDrop, OppositeOnDrop>