pub trait DatabaseAsyncRef {
type Error: DBErrorMarker;
// Required methods
fn basic_async_ref(
&self,
address: Address,
) -> impl Future<Output = Result<Option<AccountInfo>, Self::Error>> + Send;
fn code_by_hash_async_ref(
&self,
code_hash: B256,
) -> impl Future<Output = Result<Bytecode, Self::Error>> + Send;
fn storage_async_ref(
&self,
address: Address,
index: StorageKey,
) -> impl Future<Output = Result<StorageValue, Self::Error>> + Send;
fn block_hash_async_ref(
&self,
number: u64,
) -> impl Future<Output = Result<B256, Self::Error>> + Send;
// Provided method
fn storage_by_account_id_async_ref(
&self,
address: Address,
account_id: usize,
storage_key: StorageKey,
) -> impl Future<Output = Result<StorageValue, Self::Error>> + Send { ... }
}Expand description
The async EVM database interface
Contains the same methods as DatabaseRef, but it returns Future type instead.
Use WrapDatabaseAsync to provide DatabaseRef implementation for a type that only implements this trait.
Required Associated Types§
Sourcetype Error: DBErrorMarker
type Error: DBErrorMarker
The database error type
Required Methods§
Sourcefn basic_async_ref(
&self,
address: Address,
) -> impl Future<Output = Result<Option<AccountInfo>, Self::Error>> + Send
fn basic_async_ref( &self, address: Address, ) -> impl Future<Output = Result<Option<AccountInfo>, Self::Error>> + Send
Gets basic account information.
Sourcefn code_by_hash_async_ref(
&self,
code_hash: B256,
) -> impl Future<Output = Result<Bytecode, Self::Error>> + Send
fn code_by_hash_async_ref( &self, code_hash: B256, ) -> impl Future<Output = Result<Bytecode, Self::Error>> + Send
Gets account code by its hash.
Sourcefn storage_async_ref(
&self,
address: Address,
index: StorageKey,
) -> impl Future<Output = Result<StorageValue, Self::Error>> + Send
fn storage_async_ref( &self, address: Address, index: StorageKey, ) -> impl Future<Output = Result<StorageValue, Self::Error>> + Send
Gets storage value of address at index.
Provided Methods§
Sourcefn storage_by_account_id_async_ref(
&self,
address: Address,
account_id: usize,
storage_key: StorageKey,
) -> impl Future<Output = Result<StorageValue, Self::Error>> + Send
fn storage_by_account_id_async_ref( &self, address: Address, account_id: usize, storage_key: StorageKey, ) -> impl Future<Output = Result<StorageValue, Self::Error>> + Send
Gets storage value of account by its id.
Default implementation is to call DatabaseAsyncRef::storage_async_ref method.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.