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