Trait reth_revm::GetInspector

pub trait GetInspector<DB>
where DB: Database,
{ // Required method fn get_inspector(&mut self) -> &mut impl Inspector<DB>; }
Expand description

Provides access to an Inspector instance.

Required Methods§

fn get_inspector(&mut self) -> &mut impl Inspector<DB>

Returns the associated Inspector.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<DB, INSP> GetInspector<DB> for INSP
where DB: Database, INSP: Inspector<DB>,