Struct governance_os_pallet_tokens::NativeCurrencyAdapter [−][src]
pub struct NativeCurrencyAdapter<Pallet, GetCurrencyId>(_);
This struct is useful to implement the Currency
trait for any given
currency inside the system. It basically takes an interface to the
tokens
pallet and a CurrencyId
to expose them under the Currency
trait.
Trait Implementations
impl<Pallet, GetCurrencyId> Currency<<Pallet as Config>::AccountId> for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
Pallet: Config,
GetCurrencyId: Get<Pallet::CurrencyId>,
[src]
impl<Pallet, GetCurrencyId> Currency<<Pallet as Config>::AccountId> for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
Pallet: Config,
GetCurrencyId: Get<Pallet::CurrencyId>,
[src]type Balance = Pallet::Balance
The balance of an account.
type PositiveImbalance = PositiveImbalance<Pallet, GetCurrencyId>
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<Pallet, GetCurrencyId>
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: &Pallet::AccountId) -> Self::Balance
[src]
fn can_slash(who: &Pallet::AccountId, amount: 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: &Pallet::AccountId) -> Self::Balance
[src]
fn ensure_can_withdraw(
who: &Pallet::AccountId,
amount: Self::Balance,
_: WithdrawReasons,
_: Self::Balance
) -> DispatchResult
[src]
who: &Pallet::AccountId,
amount: Self::Balance,
_: WithdrawReasons,
_: Self::Balance
) -> DispatchResult
fn transfer(
source: &Pallet::AccountId,
dest: &Pallet::AccountId,
amount: Self::Balance,
_: ExistenceRequirement
) -> DispatchResult
[src]
source: &Pallet::AccountId,
dest: &Pallet::AccountId,
amount: Self::Balance,
_: ExistenceRequirement
) -> DispatchResult
fn slash(
who: &Pallet::AccountId,
amount: Self::Balance
) -> (Self::NegativeImbalance, Self::Balance)
[src]
who: &Pallet::AccountId,
amount: Self::Balance
) -> (Self::NegativeImbalance, Self::Balance)
fn deposit_into_existing(
who: &Pallet::AccountId,
amount: Self::Balance
) -> Result<Self::PositiveImbalance, DispatchError>
[src]
who: &Pallet::AccountId,
amount: Self::Balance
) -> Result<Self::PositiveImbalance, DispatchError>
fn deposit_creating(
who: &Pallet::AccountId,
amount: Self::Balance
) -> Self::PositiveImbalance
[src]
who: &Pallet::AccountId,
amount: Self::Balance
) -> Self::PositiveImbalance
fn withdraw(
who: &Pallet::AccountId,
value: Self::Balance,
_: WithdrawReasons,
_: ExistenceRequirement
) -> Result<Self::NegativeImbalance, DispatchError>
[src]
who: &Pallet::AccountId,
value: Self::Balance,
_: WithdrawReasons,
_: ExistenceRequirement
) -> Result<Self::NegativeImbalance, DispatchError>
fn make_free_balance_be(
who: &Pallet::AccountId,
value: Self::Balance
) -> SignedImbalance<Self::Balance, Self::PositiveImbalance>
[src]
who: &Pallet::AccountId,
value: Self::Balance
) -> SignedImbalance<Self::Balance, Self::PositiveImbalance>
pub fn pair(
amount: Self::Balance
) -> (Self::PositiveImbalance, Self::NegativeImbalance)
[src]
amount: Self::Balance
) -> (Self::PositiveImbalance, Self::NegativeImbalance)
pub fn resolve_into_existing(
who: &AccountId,
value: Self::NegativeImbalance
) -> Result<(), Self::NegativeImbalance>
[src]
who: &AccountId,
value: Self::NegativeImbalance
) -> Result<(), Self::NegativeImbalance>
pub fn resolve_creating(who: &AccountId, value: Self::NegativeImbalance)
[src]
pub fn settle(
who: &AccountId,
value: Self::PositiveImbalance,
reasons: WithdrawReasons,
liveness: ExistenceRequirement
) -> Result<(), Self::PositiveImbalance>
[src]
who: &AccountId,
value: Self::PositiveImbalance,
reasons: WithdrawReasons,
liveness: ExistenceRequirement
) -> Result<(), Self::PositiveImbalance>
impl<Pallet, GetCurrencyId> LockableCurrency<<Pallet as Config>::AccountId> for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
Pallet: Config,
GetCurrencyId: Get<Pallet::CurrencyId>,
[src]
impl<Pallet, GetCurrencyId> LockableCurrency<<Pallet as Config>::AccountId> for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
Pallet: Config,
GetCurrencyId: Get<Pallet::CurrencyId>,
[src]type Moment = Pallet::BlockNumber
The quantity used to denote time; usually just a BlockNumber
.
type MaxLocks = ()
The maximum number of locks a user should have on their account.
fn set_lock(
id: LockIdentifier,
who: &Pallet::AccountId,
amount: Self::Balance,
_reasons: WithdrawReasons
)
[src]
id: LockIdentifier,
who: &Pallet::AccountId,
amount: Self::Balance,
_reasons: WithdrawReasons
)
fn extend_lock(
id: LockIdentifier,
who: &Pallet::AccountId,
amount: Self::Balance,
_reasons: WithdrawReasons
)
[src]
id: LockIdentifier,
who: &Pallet::AccountId,
amount: Self::Balance,
_reasons: WithdrawReasons
)
fn remove_lock(id: LockIdentifier, who: &Pallet::AccountId)
[src]
impl<Pallet, GetCurrencyId> ReservableCurrency<<Pallet as Config>::AccountId> for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
Pallet: Config,
GetCurrencyId: Get<Pallet::CurrencyId>,
[src]
impl<Pallet, GetCurrencyId> ReservableCurrency<<Pallet as Config>::AccountId> for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
Pallet: Config,
GetCurrencyId: Get<Pallet::CurrencyId>,
[src]fn can_reserve(who: &Pallet::AccountId, amount: Self::Balance) -> bool
[src]
fn slash_reserved(
who: &Pallet::AccountId,
amount: Self::Balance
) -> (Self::NegativeImbalance, Self::Balance)
[src]
who: &Pallet::AccountId,
amount: Self::Balance
) -> (Self::NegativeImbalance, Self::Balance)
fn reserved_balance(who: &Pallet::AccountId) -> Self::Balance
[src]
fn reserve(who: &Pallet::AccountId, amount: Self::Balance) -> DispatchResult
[src]
fn unreserve(who: &Pallet::AccountId, amount: Self::Balance) -> Self::Balance
[src]
fn repatriate_reserved(
slashed: &Pallet::AccountId,
beneficiary: &Pallet::AccountId,
amount: Self::Balance,
status: BalanceStatus
) -> Result<Self::Balance, DispatchError>
[src]
slashed: &Pallet::AccountId,
beneficiary: &Pallet::AccountId,
amount: Self::Balance,
status: BalanceStatus
) -> Result<Self::Balance, DispatchError>
Auto Trait Implementations
impl<Pallet, GetCurrencyId> RefUnwindSafe for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
GetCurrencyId: RefUnwindSafe,
Pallet: RefUnwindSafe,
GetCurrencyId: RefUnwindSafe,
Pallet: RefUnwindSafe,
impl<Pallet, GetCurrencyId> Send for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
GetCurrencyId: Send,
Pallet: Send,
GetCurrencyId: Send,
Pallet: Send,
impl<Pallet, GetCurrencyId> Sync for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
GetCurrencyId: Sync,
Pallet: Sync,
GetCurrencyId: Sync,
Pallet: Sync,
impl<Pallet, GetCurrencyId> Unpin for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
GetCurrencyId: Unpin,
Pallet: Unpin,
GetCurrencyId: Unpin,
Pallet: Unpin,
impl<Pallet, GetCurrencyId> UnwindSafe for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
GetCurrencyId: UnwindSafe,
Pallet: UnwindSafe,
GetCurrencyId: UnwindSafe,
Pallet: UnwindSafe,
Blanket Implementations
impl<T> CheckedConversion for T
[src]
impl<T> CheckedConversion for T
[src]pub fn checked_from<T>(t: T) -> Option<Self> where
Self: TryFrom<T>,
[src]
Self: TryFrom<T>,
pub fn checked_into<T>(self) -> Option<T> where
Self: TryInto<T>,
[src]
Self: TryInto<T>,
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<T> SaturatedConversion for T
[src]
impl<T> SaturatedConversion for T
[src]pub fn saturated_from<T>(t: T) -> Self where
Self: UniqueSaturatedFrom<T>,
[src]
Self: UniqueSaturatedFrom<T>,
pub fn saturated_into<T>(self) -> T where
Self: UniqueSaturatedInto<T>,
[src]
Self: UniqueSaturatedInto<T>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]
impl<T, S> UniqueSaturatedInto<T> for S where
T: Bounded,
S: TryInto<T>,
[src]pub fn unique_saturated_into(self) -> T
[src]
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,