pub trait MatchesFungible<Balance> {
    fn matches_fungible(a: &MultiAsset) -> Option<Balance>;
}

Required Methods§

Implementations on Foreign Types§

Implementors§

impl<CurrencyId, CurrencyIdConvert, Amount> MatchesFungible<Amount> for IsNativeConcrete<CurrencyId, CurrencyIdConvert>where
    CurrencyIdConvert: Convert<MultiLocation, Option<CurrencyId>>,
    Amount: TryFrom<u128>,

impl<T: Get<&'static [u8]>, B: TryFrom<u128>> MatchesFungible<B> for IsAbstract<T>