Trait Database

pub trait Database: Database
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, <T as Database>::Error: Error + Send + Sync + 'static,