Skip to main content

EthInspectorExt

Trait EthInspectorExt 

pub trait EthInspectorExt<BLOCK = BlockEnv, TX = TxEnv, SPEC = SpecId>: for<'a> Inspector<Context<BLOCK, TX, CfgEnv<SPEC>, &'a mut dyn DatabaseExt<Error = DatabaseError>>> + FoundryInspectorExt { }
Expand description

Combined trait: Inspector<Context<...>> + FoundryInspectorExt.

For generic multi-network code, use I: FoundryInspectorExt + Inspector<CTX> instead.

Implementors§

§

impl<BLOCK, TX, SPEC, T> EthInspectorExt<BLOCK, TX, SPEC> for T
where T: for<'a> Inspector<Context<BLOCK, TX, CfgEnv<SPEC>, &'a mut dyn DatabaseExt<Error = DatabaseError>>> + FoundryInspectorExt,