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§
fn collections(
) -> Box<dyn Iterator<Item = Self::CollectionId> + 'static, Global>
fn collections(
) -> Box<dyn Iterator<Item = Self::CollectionId> + 'static, Global>
Returns an iterator of the collections in existence.
fn items(
collection: &Self::CollectionId
) -> Box<dyn Iterator<Item = Self::ItemId> + 'static, Global>
fn items(
collection: &Self::CollectionId
) -> Box<dyn Iterator<Item = Self::ItemId> + 'static, Global>
Returns an iterator of the items of a collection
in existence.
fn owned(
who: &AccountId
) -> Box<dyn Iterator<Item = (Self::CollectionId, Self::ItemId)> + 'static, Global>
fn owned(
who: &AccountId
) -> Box<dyn Iterator<Item = (Self::CollectionId, Self::ItemId)> + 'static, Global>
Returns an iterator of the items of all collections owned by who
.
fn owned_in_collection(
collection: &Self::CollectionId,
who: &AccountId
) -> Box<dyn Iterator<Item = Self::ItemId> + 'static, Global>
fn owned_in_collection(
collection: &Self::CollectionId,
who: &AccountId
) -> Box<dyn Iterator<Item = Self::ItemId> + 'static, Global>
Returns an iterator of the items of collection
owned by who
.
Implementations on Foreign Types§
§impl<T> InspectEnumerable<<T as Config>::AccountId> for Pallet<T>where
T: Config,
impl<T> InspectEnumerable<<T as Config>::AccountId> for Pallet<T>where
T: Config,
fn collections(
) -> Box<dyn Iterator<Item = <Pallet<T> as Inspect<<T as Config>::AccountId>>::CollectionId> + 'static, Global>
fn items(
collection: &<Pallet<T> as Inspect<<T as Config>::AccountId>>::CollectionId
) -> Box<dyn Iterator<Item = <Pallet<T> as Inspect<<T as Config>::AccountId>>::ItemId> + 'static, Global>
fn owned(
who: &<T as Config>::AccountId
) -> Box<dyn Iterator<Item = (<Pallet<T> as Inspect<<T as Config>::AccountId>>::CollectionId, <Pallet<T> as Inspect<<T as Config>::AccountId>>::ItemId)> + 'static, Global>
fn owned_in_collection(
collection: &<Pallet<T> as Inspect<<T as Config>::AccountId>>::CollectionId,
who: &<T as Config>::AccountId
) -> Box<dyn Iterator<Item = <Pallet<T> as Inspect<<T as Config>::AccountId>>::ItemId> + 'static, Global>
§impl<T, I> InspectEnumerable<<T as Config>::AccountId> for Pallet<T, I>where
T: Config<I>,
I: 'static,
impl<T, I> InspectEnumerable<<T as Config>::AccountId> for Pallet<T, I>where
T: Config<I>,
I: 'static,
§fn collections(
) -> Box<dyn Iterator<Item = <Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId> + 'static, Global>
fn collections(
) -> Box<dyn Iterator<Item = <Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId> + 'static, Global>
Returns an iterator of the collections in existence.
NOTE: iterating this list invokes a storage read per item.
§fn items(
collection: &<Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId
) -> Box<dyn Iterator<Item = <Pallet<T, I> as Inspect<<T as Config>::AccountId>>::ItemId> + 'static, Global>
fn items(
collection: &<Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId
) -> Box<dyn Iterator<Item = <Pallet<T, I> as Inspect<<T as Config>::AccountId>>::ItemId> + 'static, Global>
Returns an iterator of the items of a collection
in existence.
NOTE: iterating this list invokes a storage read per item.
§fn owned(
who: &<T as Config>::AccountId
) -> Box<dyn Iterator<Item = (<Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId, <Pallet<T, I> as Inspect<<T as Config>::AccountId>>::ItemId)> + 'static, Global>
fn owned(
who: &<T as Config>::AccountId
) -> Box<dyn Iterator<Item = (<Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId, <Pallet<T, I> as Inspect<<T as Config>::AccountId>>::ItemId)> + 'static, Global>
Returns an iterator of the items of all collections owned by who
.
NOTE: iterating this list invokes a storage read per item.
§fn owned_in_collection(
collection: &<Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId,
who: &<T as Config>::AccountId
) -> Box<dyn Iterator<Item = <Pallet<T, I> as Inspect<<T as Config>::AccountId>>::ItemId> + 'static, Global>
fn owned_in_collection(
collection: &<Pallet<T, I> as Inspect<<T as Config>::AccountId>>::CollectionId,
who: &<T as Config>::AccountId
) -> Box<dyn Iterator<Item = <Pallet<T, I> as Inspect<<T as Config>::AccountId>>::ItemId> + 'static, Global>
Returns an iterator of the items of collection
owned by who
.
NOTE: iterating this list invokes a storage read per item.