pub struct GetWbethRewardsHistoryParams {
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_wbeth_rewards_history] operation.
This struct holds all of the inputs you can pass when calling
get_wbeth_rewards_history.
Fields§
§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 GetWbethRewardsHistoryParams
impl GetWbethRewardsHistoryParams
Sourcepub fn builder() -> GetWbethRewardsHistoryParamsBuilder
pub fn builder() -> GetWbethRewardsHistoryParamsBuilder
Create a builder for [get_wbeth_rewards_history].
Trait Implementations§
Source§impl Clone for GetWbethRewardsHistoryParams
impl Clone for GetWbethRewardsHistoryParams
Source§fn clone(&self) -> GetWbethRewardsHistoryParams
fn clone(&self) -> GetWbethRewardsHistoryParams
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 GetWbethRewardsHistoryParams
impl Debug for GetWbethRewardsHistoryParams
Source§impl Default for GetWbethRewardsHistoryParams
impl Default for GetWbethRewardsHistoryParams
Source§fn default() -> GetWbethRewardsHistoryParams
fn default() -> GetWbethRewardsHistoryParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetWbethRewardsHistoryParams
impl RefUnwindSafe for GetWbethRewardsHistoryParams
impl Send for GetWbethRewardsHistoryParams
impl Sync for GetWbethRewardsHistoryParams
impl Unpin for GetWbethRewardsHistoryParams
impl UnsafeUnpin for GetWbethRewardsHistoryParams
impl UnwindSafe for GetWbethRewardsHistoryParams
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