pub struct GetConvertTradeHistoryParams {
pub start_time: i64,
pub end_time: i64,
pub limit: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [get_convert_trade_history] operation.
This struct holds all of the inputs you can pass when calling
get_convert_trade_history.
Fields§
§start_time: i64The start_time parameter.
This field is **required.
end_time: i64The end_time parameter.
This field is **required.
limit: Option<i64>Default 100, Max 1000
This field is **optional.
recv_window: Option<i64>The value cannot be greater than 60000
This field is **optional.
Implementations§
Source§impl GetConvertTradeHistoryParams
impl GetConvertTradeHistoryParams
Sourcepub fn builder(
start_time: i64,
end_time: i64,
) -> GetConvertTradeHistoryParamsBuilder
pub fn builder( start_time: i64, end_time: i64, ) -> GetConvertTradeHistoryParamsBuilder
Create a builder for [get_convert_trade_history].
Required parameters:
start_time— i64end_time— i64
Trait Implementations§
Source§impl Clone for GetConvertTradeHistoryParams
impl Clone for GetConvertTradeHistoryParams
Source§fn clone(&self) -> GetConvertTradeHistoryParams
fn clone(&self) -> GetConvertTradeHistoryParams
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 moreAuto Trait Implementations§
impl Freeze for GetConvertTradeHistoryParams
impl RefUnwindSafe for GetConvertTradeHistoryParams
impl Send for GetConvertTradeHistoryParams
impl Sync for GetConvertTradeHistoryParams
impl Unpin for GetConvertTradeHistoryParams
impl UnsafeUnpin for GetConvertTradeHistoryParams
impl UnwindSafe for GetConvertTradeHistoryParams
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