Skip to main content

InspectorExt

Trait InspectorExt 

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

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

Used as a trait object (dyn InspectorExt) in backend code that is Eth-specific. For generic multi-network code, use I: FoundryInspectorExt + Inspector<CTX> instead.

Implementors§

§

impl<T> InspectorExt for T
where T: for<'a> Inspector<Context<BlockEnv, TxEnv, CfgEnv, &'a mut dyn DatabaseExt<Error = DatabaseError>>> + FoundryInspectorExt,