Trait cfg_traits::CurrencyInspect
source · pub trait CurrencyInspect {
type CurrencyId;
// Required method
fn is_tranche_token(currency: Self::CurrencyId) -> bool;
}
Expand description
Trait to retrieve information about currencies.
Required Associated Types§
type CurrencyId
Required Methods§
sourcefn is_tranche_token(currency: Self::CurrencyId) -> bool
fn is_tranche_token(currency: Self::CurrencyId) -> bool
Checks whether the provided currency is a tranche token.
Object Safety§
This trait is not object safe.