pub trait BenchmarkSetup {
// Required method
fn create_counterpart_asset();
}
Expand description
Setup the empty genesis state for benchmarking.
Required Methods§
Sourcefn create_counterpart_asset()
fn create_counterpart_asset()
Create the counterpart asset. Should panic on error.
This is called prior to assuming that a counterpart balance exists.
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.