Trait polkadot_sdk_frame::traits::tokens::fungibles::InspectEnumerable
pub trait InspectEnumerable<AccountId>: Inspect<AccountId> {
type AssetsIterator;
// Required method
fn asset_ids() -> Self::AssetsIterator;
}
Expand description
Interface for enumerating assets in existence or owned by a given account.
Required Associated Types§
type AssetsIterator
Required Methods§
fn asset_ids() -> Self::AssetsIterator
fn asset_ids() -> Self::AssetsIterator
Returns an iterator of the collections in existence.
Object Safety§
This trait is not object safe.