pub trait InspectEnumerable<AccountId>: Inspect<AccountId> {
    type AssetsIterator;

    fn asset_ids() -> Self::AssetsIterator;
}
Expand description

Interface for enumerating assets in existence or owned by a given account.

Required Associated Types§

Required Methods§

Returns an iterator of the collections in existence.

Implementors§