pub trait BenchmarkHelper<CollectionId, ItemId> {
    // Required methods
    fn collection(i: u16) -> CollectionId;
    fn item(i: u16) -> ItemId;
}

Required Methods§

source

fn collection(i: u16) -> CollectionId

source

fn item(i: u16) -> ItemId

Implementations on Foreign Types§

source§

impl<CollectionId: From<u16>, ItemId: From<u16>> BenchmarkHelper<CollectionId, ItemId> for ()

source§

fn collection(i: u16) -> CollectionId

source§

fn item(i: u16) -> ItemId

Implementors§