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>Number of records to return
This field is **optional.
recv_window: Option<i64>Request validity window in milliseconds
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 moreSource§impl Debug for GetConvertTradeHistoryParams
impl Debug for GetConvertTradeHistoryParams
Source§impl<'de> Deserialize<'de> for GetConvertTradeHistoryParams
impl<'de> Deserialize<'de> for GetConvertTradeHistoryParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto 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