pub trait PrecompileTesterExt: PrecompileSet + Sized {
// Required method
fn prepare_test(
&self,
from: impl Into<H160>,
to: impl Into<H160>,
data: impl Into<Vec<u8>>,
) -> PrecompilesTester<'_, Self>;
}
Required Methods§
fn prepare_test( &self, from: impl Into<H160>, to: impl Into<H160>, data: impl Into<Vec<u8>>, ) -> PrecompilesTester<'_, Self>
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.