pub trait HandleImbalanceDrop<Balance> {
    // Required method
    fn handle(amount: Balance);
}
Expand description

Handler for when an imbalance gets dropped. This could handle either a credit (negative) or debt (positive) imbalance.

Required Methods§

source

fn handle(amount: Balance)

Some something with the imbalance’s value which is being dropped.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<Balance> HandleImbalanceDrop<Balance> for ()

source§

fn handle(_: Balance)

Implementors§

source§

impl<AccountId, U: Unbalanced<AccountId>> HandleImbalanceDrop<<U as Inspect<AccountId>>::Balance> for DecreaseIssuance<AccountId, U>

source§

impl<AccountId, U: Unbalanced<AccountId>> HandleImbalanceDrop<<U as Inspect<AccountId>>::Balance> for IncreaseIssuance<AccountId, U>