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>
impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Debug for Imbalance<B, OnDrop, OppositeOnDrop>
source§impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Default for Imbalance<B, OnDrop, OppositeOnDrop>
impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Default for Imbalance<B, OnDrop, OppositeOnDrop>
source§impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Drop for Imbalance<B, OnDrop, OppositeOnDrop>
impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Drop for Imbalance<B, OnDrop, OppositeOnDrop>
source§impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Imbalance<B> for Imbalance<B, OnDrop, OppositeOnDrop>
impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> Imbalance<B> for Imbalance<B, OnDrop, OppositeOnDrop>
§type Opposite = Imbalance<B, OppositeOnDrop, OnDrop>
type Opposite = Imbalance<B, OppositeOnDrop, OnDrop>
The oppositely imbalanced type. They come in pairs.
source§fn drop_zero(self) -> Result<(), Self>
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)
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
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
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)
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>>
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 ration(self, first: u32, second: u32) -> (Self, Self)
fn ration(self, first: u32, second: u32) -> (Self, Self)
Consume
self
and return two independent instances; the amounts returned will be in
approximately the same ratio as first
:second
. Read moresource§fn split_merge(self, amount: Balance, others: (Self, Self)) -> (Self, Self)
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)
fn ration_merge( self, first: u32, second: u32, others: (Self, Self), ) -> (Self, Self)
Consume self and add its two components, defined by the ratio
first
:second
,
element-wise to two pre-existing Imbalances. Read moresource§fn split_merge_into(self, amount: Balance, others: &mut (Self, Self))
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))
fn ration_merge_into(self, first: u32, second: u32, others: &mut (Self, Self))
Consume self and add its two components, defined by the ratio
first
:second
,
element-wise to two pre-existing Imbalances. Read moresource§fn merge_into(self, other: &mut Self)
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
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>)
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>
impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> PartialEq for Imbalance<B, OnDrop, OppositeOnDrop>
source§impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> TryDrop for Imbalance<B, OnDrop, OppositeOnDrop>
impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> TryDrop for Imbalance<B, OnDrop, OppositeOnDrop>
source§impl<B: Balance, OnDrop: HandleImbalanceDrop<B>, OppositeOnDrop: HandleImbalanceDrop<B>> TryMerge for Imbalance<B, OnDrop, OppositeOnDrop>
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)>
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).