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