Trait EngineEthFilter
pub trait EngineEthFilter:
Send
+ Sync
+ 'static {
// Required method
fn logs(
&self,
filter: Filter,
limits: QueryLimits,
) -> impl Future<Output = Result<Vec<Log>, ErrorObject<'static>>> + Send;
}
Expand description
Rpc Interface for poll-based ethereum filter API, implementing only the eth_getLogs
method.
Used for the engine API, with possibility to specify QueryLimits
.
Required 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.