pub struct EthStakingAccountParams {
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [eth_staking_account] operation.
This struct holds all of the inputs you can pass when calling
eth_staking_account.
Fields§
§recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl EthStakingAccountParams
impl EthStakingAccountParams
Sourcepub fn builder() -> EthStakingAccountParamsBuilder
pub fn builder() -> EthStakingAccountParamsBuilder
Create a builder for [eth_staking_account].
Trait Implementations§
Source§impl Clone for EthStakingAccountParams
impl Clone for EthStakingAccountParams
Source§fn clone(&self) -> EthStakingAccountParams
fn clone(&self) -> EthStakingAccountParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EthStakingAccountParams
impl Debug for EthStakingAccountParams
Source§impl Default for EthStakingAccountParams
impl Default for EthStakingAccountParams
Source§fn default() -> EthStakingAccountParams
fn default() -> EthStakingAccountParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EthStakingAccountParams
impl RefUnwindSafe for EthStakingAccountParams
impl Send for EthStakingAccountParams
impl Sync for EthStakingAccountParams
impl Unpin for EthStakingAccountParams
impl UnsafeUnpin for EthStakingAccountParams
impl UnwindSafe for EthStakingAccountParams
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