Database

Trait Database 

Source
pub trait Database: Database<Error: Error + Send + Sync + 'static> + Debug { }
Expand description

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

Implementors§

Source§

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