pub trait GetBlockAccessList:
Trace
+ Call
+ LoadBlock {
// Provided method
fn get_block_access_list(
&self,
block_id: BlockId,
) -> impl Future<Output = Result<Option<Vec<AccountChanges>>, Self::Error>> + Send { ... }
}Expand description
Helper trait for eth_blockAccessList RPC method.
Provided Methods§
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.