Skip to main content

EthInspectorExt

Trait EthInspectorExt 

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

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

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

Implementors§

Source§

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>> + FoundryInspectorExt,