referrerpolicy=no-referrer-when-downgrade
frame_support::traits::tokens::nonfungible

Trait InspectEnumerable

Source
pub trait InspectEnumerable<AccountId>: Inspect<AccountId> {
    type ItemsIterator: Iterator<Item = Self::ItemId>;
    type OwnedIterator: Iterator<Item = Self::ItemId>;

    // Required methods
    fn items() -> Self::ItemsIterator;
    fn owned(who: &AccountId) -> Self::OwnedIterator;
}
Expand description

Interface for enumerating items in existence or owned by a given account over a collection of NFTs.

Required Associated Types§

Source

type ItemsIterator: Iterator<Item = Self::ItemId>

The iterator type for Self::items.

Source

type OwnedIterator: Iterator<Item = Self::ItemId>

The iterator type for Self::owned.

Required Methods§

Source

fn items() -> Self::ItemsIterator

Returns an iterator of the items within a collection in existence.

Source

fn owned(who: &AccountId) -> Self::OwnedIterator

Returns an iterator of the items of all collections owned by who.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<F: InspectEnumerable<AccountId>, A: Get<<F as Inspect<AccountId>>::CollectionId>, AccountId> InspectEnumerable<AccountId> for ItemOf<F, A, AccountId>