pub struct EthCall<'req, T, N, Resp, Output = Resp, Map = fn(_: Resp) -> Output>{ /* private fields */ }
Expand description
A builder for an "eth_call"
request. This type is returned by the
Provider::call
method.
Implementations§
source§impl<'req, T, N, Resp> EthCall<'req, T, N, Resp>
impl<'req, T, N, Resp> EthCall<'req, T, N, Resp>
sourcepub fn new(
caller: impl Caller<T, EthCallParams<'req, N>, Resp> + 'static,
data: &'req N::TransactionRequest,
) -> Self
pub fn new( caller: impl Caller<T, EthCallParams<'req, N>, Resp> + 'static, data: &'req N::TransactionRequest, ) -> Self
Create a new CallBuilder.
sourcepub fn gas_estimate(
caller: impl Caller<T, EthCallParams<'req, N>, Resp> + 'static,
data: &'req N::TransactionRequest,
) -> Self
pub fn gas_estimate( caller: impl Caller<T, EthCallParams<'req, N>, Resp> + 'static, data: &'req N::TransactionRequest, ) -> Self
Create new EthCall for gas estimates.
source§impl<'req, T, N, Resp, Output, Map> EthCall<'req, T, N, Resp, Output, Map>
impl<'req, T, N, Resp, Output, Map> EthCall<'req, T, N, Resp, Output, Map>
sourcepub fn map_resp<NewOutput, NewMap>(
self,
map: NewMap,
) -> EthCall<'req, T, N, Resp, NewOutput, NewMap>where
NewMap: Fn(Resp) -> NewOutput,
pub fn map_resp<NewOutput, NewMap>(
self,
map: NewMap,
) -> EthCall<'req, T, N, Resp, NewOutput, NewMap>where
NewMap: Fn(Resp) -> NewOutput,
Map the response to a different type. This is usable for converting
the response to a more usable type, e.g. changing U64
to u64
.
§Note
Carefully review the rust documentation on fn pointers before passing
them to this function. Unless the pointer is specifically coerced to a
fn(_) -> _
, the NewMap
will be inferred as that function’s unique
type. This can lead to confusing error messages.
sourcepub const fn overrides(self, overrides: &'req StateOverride) -> Self
pub const fn overrides(self, overrides: &'req StateOverride) -> Self
Set the state overrides for this call.
Trait Implementations§
source§impl<'req, T, N, Resp, Output, Map> IntoFuture for EthCall<'req, T, N, Resp, Output, Map>
impl<'req, T, N, Resp, Output, Map> IntoFuture for EthCall<'req, T, N, Resp, Output, Map>
source§type Output = Result<Output, RpcError<TransportErrorKind>>
type Output = Result<Output, RpcError<TransportErrorKind>>
The output that the future will produce on completion.
source§type IntoFuture = EthCallFut<'req, T, N, Resp, Output, Map>
type IntoFuture = EthCallFut<'req, T, N, Resp, Output, Map>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'req, T, N, Resp, Output, Map> Freeze for EthCall<'req, T, N, Resp, Output, Map>where
Map: Freeze,
impl<'req, T, N, Resp, Output = Resp, Map = fn(_: Resp) -> Output> !RefUnwindSafe for EthCall<'req, T, N, Resp, Output, Map>
impl<'req, T, N, Resp, Output, Map> Send for EthCall<'req, T, N, Resp, Output, Map>where
Map: Send,
impl<'req, T, N, Resp, Output, Map> Sync for EthCall<'req, T, N, Resp, Output, Map>where
Map: Sync,
impl<'req, T, N, Resp, Output, Map> Unpin for EthCall<'req, T, N, Resp, Output, Map>where
Map: Unpin,
impl<'req, T, N, Resp, Output = Resp, Map = fn(_: Resp) -> Output> !UnwindSafe for EthCall<'req, T, N, Resp, Output, Map>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more