pub trait InspectEnumerable<AccountId>: Inspect<AccountId> {
    fn collections(
    ) -> Box<dyn Iterator<Item = Self::CollectionId> + 'static, Global>; fn items(
        collection: &Self::CollectionId
    ) -> Box<dyn Iterator<Item = Self::ItemId> + 'static, Global>; fn owned(
        who: &AccountId
    ) -> Box<dyn Iterator<Item = (Self::CollectionId, Self::ItemId)> + 'static, Global>; fn owned_in_collection(
        collection: &Self::CollectionId,
        who: &AccountId
    ) -> Box<dyn Iterator<Item = Self::ItemId> + 'static, Global>; }
Expand description

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

Required Methods§

Returns an iterator of the collections in existence.

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

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

Returns an iterator of the items of collection owned by who.

Implementations on Foreign Types§

Returns an iterator of the collections in existence.

NOTE: iterating this list invokes a storage read per item.

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

NOTE: iterating this list invokes a storage read per item.

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

NOTE: iterating this list invokes a storage read per item.

Returns an iterator of the items of collection owned by who.

NOTE: iterating this list invokes a storage read per item.

Implementors§