pub trait BenchmarkHelper<AssetId, CollectionId, ItemId> {
// Required methods
fn asset(id: u32) -> AssetId;
fn collection(id: u32) -> CollectionId;
fn nft(id: u32) -> ItemId;
}
Expand description
Benchmark Helper
Required Methods§
sourcefn collection(id: u32) -> CollectionId
fn collection(id: u32) -> CollectionId
Returns a collection id from a given integer.