[−][src]Struct eq_balances::balance_adapter::BalanceAdapter
Adapts EqCurrency
to work as BasicCurrency
in Substrate runtime
Trait Implementations
impl<AccountId, T, R, CurrencyGetter> Currency<AccountId> for BalanceAdapter<T, R, CurrencyGetter> where
T: Trait,
R: EqCurrency<AccountId, T::Balance>,
CurrencyGetter: Get<Currency>,
[src]
T: Trait,
R: EqCurrency<AccountId, T::Balance>,
CurrencyGetter: Get<Currency>,
type Balance = T::Balance
The balance of an account.
type PositiveImbalance = PositiveImbalance<T::Balance>
The opaque token type for an imbalance. This is returned by unbalanced operations and must be dealt with. It may be dropped but cannot be cloned. Read more
type NegativeImbalance = NegativeImbalance<T::Balance>
The opaque token type for an imbalance. This is returned by unbalanced operations and must be dealt with. It may be dropped but cannot be cloned. Read more
fn total_balance(who: &AccountId) -> Self::Balance
[src]
fn can_slash(who: &AccountId, value: Self::Balance) -> bool
[src]
fn total_issuance() -> Self::Balance
[src]
fn minimum_balance() -> Self::Balance
[src]
fn burn(amount: Self::Balance) -> Self::PositiveImbalance
[src]
fn issue(amount: Self::Balance) -> Self::NegativeImbalance
[src]
fn free_balance(who: &AccountId) -> Self::Balance
[src]
fn ensure_can_withdraw(
who: &AccountId,
_amount: Self::Balance,
reasons: WithdrawReasons,
new_balance: Self::Balance
) -> DispatchResult
[src]
who: &AccountId,
_amount: Self::Balance,
reasons: WithdrawReasons,
new_balance: Self::Balance
) -> DispatchResult
fn transfer(
source: &AccountId,
dest: &AccountId,
value: Self::Balance,
existence_requirement: ExistenceRequirement
) -> DispatchResult
[src]
source: &AccountId,
dest: &AccountId,
value: Self::Balance,
existence_requirement: ExistenceRequirement
) -> DispatchResult
fn slash(
who: &AccountId,
value: Self::Balance
) -> (Self::NegativeImbalance, Self::Balance)
[src]
who: &AccountId,
value: Self::Balance
) -> (Self::NegativeImbalance, Self::Balance)
fn deposit_into_existing(
who: &AccountId,
value: Self::Balance
) -> Result<Self::PositiveImbalance, DispatchError>
[src]
who: &AccountId,
value: Self::Balance
) -> Result<Self::PositiveImbalance, DispatchError>
fn deposit_creating(
who: &AccountId,
value: Self::Balance
) -> Self::PositiveImbalance
[src]
who: &AccountId,
value: Self::Balance
) -> Self::PositiveImbalance
fn withdraw(
who: &AccountId,
value: Self::Balance,
reasons: WithdrawReasons,
liveness: ExistenceRequirement
) -> Result<Self::NegativeImbalance, DispatchError>
[src]
who: &AccountId,
value: Self::Balance,
reasons: WithdrawReasons,
liveness: ExistenceRequirement
) -> Result<Self::NegativeImbalance, DispatchError>
fn make_free_balance_be(
who: &AccountId,
balance: Self::Balance
) -> SignedImbalance<Self::Balance, Self::PositiveImbalance>
[src]
who: &AccountId,
balance: Self::Balance
) -> SignedImbalance<Self::Balance, Self::PositiveImbalance>
fn pair(
amount: Self::Balance
) -> (Self::PositiveImbalance, Self::NegativeImbalance)
amount: Self::Balance
) -> (Self::PositiveImbalance, Self::NegativeImbalance)
fn resolve_into_existing(
who: &AccountId,
value: Self::NegativeImbalance
) -> Result<(), Self::NegativeImbalance>
who: &AccountId,
value: Self::NegativeImbalance
) -> Result<(), Self::NegativeImbalance>
fn resolve_creating(who: &AccountId, value: Self::NegativeImbalance)
fn settle(
who: &AccountId,
value: Self::PositiveImbalance,
reasons: WithdrawReasons,
liveness: ExistenceRequirement
) -> Result<(), Self::PositiveImbalance>
who: &AccountId,
value: Self::PositiveImbalance,
reasons: WithdrawReasons,
liveness: ExistenceRequirement
) -> Result<(), Self::PositiveImbalance>
Auto Trait Implementations
impl<T, R, CurrencyGetter> RefUnwindSafe for BalanceAdapter<T, R, CurrencyGetter> where
CurrencyGetter: RefUnwindSafe,
R: RefUnwindSafe,
T: RefUnwindSafe,
CurrencyGetter: RefUnwindSafe,
R: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, R, CurrencyGetter> Send for BalanceAdapter<T, R, CurrencyGetter> where
CurrencyGetter: Send,
R: Send,
T: Send,
CurrencyGetter: Send,
R: Send,
T: Send,
impl<T, R, CurrencyGetter> Sync for BalanceAdapter<T, R, CurrencyGetter> where
CurrencyGetter: Sync,
R: Sync,
T: Sync,
CurrencyGetter: Sync,
R: Sync,
T: Sync,
impl<T, R, CurrencyGetter> Unpin for BalanceAdapter<T, R, CurrencyGetter> where
CurrencyGetter: Unpin,
R: Unpin,
T: Unpin,
CurrencyGetter: Unpin,
R: Unpin,
T: Unpin,
impl<T, R, CurrencyGetter> UnwindSafe for BalanceAdapter<T, R, CurrencyGetter> where
CurrencyGetter: UnwindSafe,
R: UnwindSafe,
T: UnwindSafe,
CurrencyGetter: UnwindSafe,
R: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> CheckedConversion for T
fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
Self: TryFrom<T>,
fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
Self: TryInto<T>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IsType<T> for T
fn from_ref(t: &T) -> &T
fn into_ref(&self) -> &T
fn from_mut(t: &mut T) -> &mut T
fn into_mut(&mut self) -> &mut T
impl<T, Outer> IsWrappedBy<Outer> for T where
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
fn from_ref(outer: &Outer) -> &T
Get a reference to the inner from the outer.
fn from_mut(outer: &mut Outer) -> &mut T
Get a mutable reference to the inner from the outer.
impl<Src, Dst> LossyInto<Dst> for Src where
Dst: LossyFrom<Src>,
[src]
Dst: LossyFrom<Src>,
fn lossy_into(self) -> Dst
[src]
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> SaturatedConversion for T
fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
Self: UniqueSaturatedFrom<T>,
fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
Self: UniqueSaturatedInto<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
T: UncheckedFrom<S>,
fn unchecked_into(self) -> T
impl<T, S> UniqueSaturatedInto<T> for S where
S: TryInto<T>,
T: Bounded,
S: TryInto<T>,
T: Bounded,
fn unique_saturated_into(self) -> T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,