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]

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

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.

impl<Pallet, GetCurrencyId> ReservableCurrency<<Pallet as Config>::AccountId> for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
    Pallet: Config,
    GetCurrencyId: Get<Pallet::CurrencyId>, 
[src]

Auto Trait Implementations

impl<Pallet, GetCurrencyId> RefUnwindSafe for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
    GetCurrencyId: RefUnwindSafe,
    Pallet: RefUnwindSafe

impl<Pallet, GetCurrencyId> Send for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
    GetCurrencyId: Send,
    Pallet: Send

impl<Pallet, GetCurrencyId> Sync for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
    GetCurrencyId: Sync,
    Pallet: Sync

impl<Pallet, GetCurrencyId> Unpin for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
    GetCurrencyId: Unpin,
    Pallet: Unpin

impl<Pallet, GetCurrencyId> UnwindSafe for NativeCurrencyAdapter<Pallet, GetCurrencyId> where
    GetCurrencyId: UnwindSafe,
    Pallet: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedConversion for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IsType<T> for T[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe
[src]