pub struct GetExerciseRecordV1Params {
pub timestamp: i64,
pub symbol: Option<String>,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub limit: Option<i32>,
pub recv_window: Option<i64>,
}Expand description
struct for passing parameters to the method get_exercise_record_v1
Fields§
§timestamp: i64§symbol: Option<String>Option trading pair, e.g BTC-200730-9000-C
start_time: Option<i64>startTime
end_time: Option<i64>endTime
limit: Option<i32>default 1000, max 1000
recv_window: Option<i64>Trait Implementations§
Source§impl Clone for GetExerciseRecordV1Params
impl Clone for GetExerciseRecordV1Params
Source§fn clone(&self) -> GetExerciseRecordV1Params
fn clone(&self) -> GetExerciseRecordV1Params
Returns a copy of the value. Read more
1.0.0 · 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 GetExerciseRecordV1Params
impl Debug for GetExerciseRecordV1Params
Source§impl Default for GetExerciseRecordV1Params
impl Default for GetExerciseRecordV1Params
Source§fn default() -> GetExerciseRecordV1Params
fn default() -> GetExerciseRecordV1Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetExerciseRecordV1Params
impl RefUnwindSafe for GetExerciseRecordV1Params
impl Send for GetExerciseRecordV1Params
impl Sync for GetExerciseRecordV1Params
impl Unpin for GetExerciseRecordV1Params
impl UnwindSafe for GetExerciseRecordV1Params
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