Database

Trait Database 

pub trait Database: Database + Debug
where Self::Error: Error + Send + Sync + 'static,
{ }
Available on crate feature evm only.
Expand description

Helper trait to bound revm::Database::Error with common requirements.

Implementors§

§

impl<T> Database for T
where T: Database + Debug, <T as Database>::Error: Error + Send + Sync + 'static,