Trait ethers_providers::RawCall
source · pub trait RawCall<'a> {
// Required methods
fn block(self, id: BlockId) -> Self;
fn state(self, state: &'a State) -> Self;
// Provided method
fn map<F>(self, f: F) -> Map<Self, F> ⓘ
where Self: Sized { ... }
}
Expand description
Provides methods for overriding parameters to the eth_call
rpc method
Required Methods§
sourcefn state(self, state: &'a State) -> Self
fn state(self, state: &'a State) -> Self
Sets the state override set. Note that not all client implementations will support this as a parameter.
Provided Methods§
Object Safety§
This trait is not object safe.