pub trait BenchmarkHelper<AssetIdParameter, ReserveIdParameter> {
// Required methods
fn create_asset_id_parameter(id: u32) -> AssetIdParameter;
fn create_reserve_id_parameter(id: u32) -> ReserveIdParameter;
}Required Methods§
fn create_asset_id_parameter(id: u32) -> AssetIdParameter
fn create_reserve_id_parameter(id: u32) -> ReserveIdParameter
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.
Implementations on Foreign Types§
Source§impl<AssetIdParameter: From<u32>> BenchmarkHelper<AssetIdParameter, ()> for ()
Available on crate feature runtime-benchmarks only.
impl<AssetIdParameter: From<u32>> BenchmarkHelper<AssetIdParameter, ()> for ()
Available on crate feature
runtime-benchmarks only.