Type Alias frame_support::traits::tokens::fungible::Debt

source ·
pub type Debt<AccountId, B> = Imbalance<<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 */ }

Trait Implementations

source§

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

source§

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

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

impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Default for Imbalance<B, OnDrop, OppositeOnDrop>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

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

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

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

§

type Opposite = Imbalance<B, OppositeOnDrop, OnDrop>

The oppositely imbalanced type. They come in pairs.
source§

fn zero() -> Self

The zero imbalance. Can be destroyed with drop_zero.
source§

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

Drop an instance cleanly. Only works if its self.value() is zero.
source§

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

Consume self and return two independent instances; the first is guaranteed to be at most amount and the second will be the remainder.
source§

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

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

fn merge(self, other: Self) -> Self

Consume self and an other to return a new instance that combines both.
source§

fn subsume(&mut self, other: Self)

Consume an other to mutate self into a new instance that combines both.
source§

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

Consume self and along with an opposite counterpart to return a combined result. Read more
source§

fn peek(&self) -> B

The raw value of self.
source§

fn ration(self, first: u32, second: u32) -> (Self, Self)
where Balance: From<u32> + Saturating + Div<Output = Balance>,

Consume self and return two independent instances; the amounts returned will be in approximately the same ratio as first:second. Read more
source§

fn split_merge(self, amount: Balance, others: (Self, Self)) -> (Self, Self)

Consume self and add its two components, defined by the first component’s balance, element-wise to two pre-existing Imbalances. Read more
source§

fn ration_merge( self, first: u32, second: u32, others: (Self, Self), ) -> (Self, Self)
where Balance: From<u32> + Saturating + Div<Output = Balance>,

Consume self and add its two components, defined by the ratio first:second, element-wise to two pre-existing Imbalances. Read more
source§

fn split_merge_into(self, amount: Balance, others: &mut (Self, Self))

Consume self and add its two components, defined by the first component’s balance, element-wise into two pre-existing Imbalance refs. Read more
source§

fn ration_merge_into(self, first: u32, second: u32, others: &mut (Self, Self))
where Balance: From<u32> + Saturating + Div<Output = Balance>,

Consume self and add its two components, defined by the ratio first:second, element-wise to two pre-existing Imbalances. Read more
source§

fn merge_into(self, other: &mut Self)

Consume self to mutate other so that it combines both. Just like subsume, only with reversed arguments.
source§

fn maybe_merge(self, other: Option<Self>) -> Self

Consume self and maybe an other to return a new instance that combines both.
source§

fn maybe_subsume(&mut self, other: Option<Self>)

Maybe consume an other to mutate self into a new instance that combines both.
source§

impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> PartialEq for Imbalance<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<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> TryDrop for Imbalance<B, OnDrop, OppositeOnDrop>

source§

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

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

source§

impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> TryMerge for Imbalance<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<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Eq for Imbalance<B, OnDrop, OppositeOnDrop>