pub struct GetEthStakingHistoryParams {
pub purchase_id: Option<i64>,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub current: Option<i64>,
pub size: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [get_eth_staking_history] operation.
This struct holds all of the inputs you can pass when calling
get_eth_staking_history.
Fields§
§purchase_id: Option<i64>The purchase_id parameter.
This field is **optional.
start_time: Option<i64>The start_time parameter.
This field is **optional.
end_time: Option<i64>The end_time parameter.
This field is **optional.
current: Option<i64>Currently querying page. Start from 1. Default:1
This field is **optional.
size: Option<i64>Default:10, Max:100
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl GetEthStakingHistoryParams
impl GetEthStakingHistoryParams
Sourcepub fn builder() -> GetEthStakingHistoryParamsBuilder
pub fn builder() -> GetEthStakingHistoryParamsBuilder
Create a builder for [get_eth_staking_history].
Trait Implementations§
Source§impl Clone for GetEthStakingHistoryParams
impl Clone for GetEthStakingHistoryParams
Source§fn clone(&self) -> GetEthStakingHistoryParams
fn clone(&self) -> GetEthStakingHistoryParams
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 GetEthStakingHistoryParams
impl Debug for GetEthStakingHistoryParams
Source§impl Default for GetEthStakingHistoryParams
impl Default for GetEthStakingHistoryParams
Source§fn default() -> GetEthStakingHistoryParams
fn default() -> GetEthStakingHistoryParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetEthStakingHistoryParams
impl RefUnwindSafe for GetEthStakingHistoryParams
impl Send for GetEthStakingHistoryParams
impl Sync for GetEthStakingHistoryParams
impl Unpin for GetEthStakingHistoryParams
impl UnsafeUnpin for GetEthStakingHistoryParams
impl UnwindSafe for GetEthStakingHistoryParams
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