Skip to main content

FoundryInspectorExt

Trait FoundryInspectorExt 

Source
pub trait FoundryInspectorExt<CTX: FoundryContextExt>: Inspector<CTX> + InspectorExt { }
Expand description

A combined inspector trait that integrates revm’s [Inspector] with Foundry-specific extensions. Automatically implemented for any type that implements both [Inspector<CTX>] and InspectorExt.

Implementors§

Source§

impl<CTX: FoundryContextExt, T> FoundryInspectorExt<CTX> for T
where T: Inspector<CTX> + InspectorExt,