pub struct GetExerciseHistoryV1Params {
pub underlying: Option<String>,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub limit: Option<i32>,
}Expand description
struct for passing parameters to the method get_exercise_history_v1
Fields§
§underlying: Option<String>Underlying index like BTCUSDT
start_time: Option<i64>Start Time
end_time: Option<i64>End Time
limit: Option<i32>Number of records Default:100 Max:100
Trait Implementations§
Source§impl Clone for GetExerciseHistoryV1Params
impl Clone for GetExerciseHistoryV1Params
Source§fn clone(&self) -> GetExerciseHistoryV1Params
fn clone(&self) -> GetExerciseHistoryV1Params
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 GetExerciseHistoryV1Params
impl Debug for GetExerciseHistoryV1Params
Source§impl Default for GetExerciseHistoryV1Params
impl Default for GetExerciseHistoryV1Params
Source§fn default() -> GetExerciseHistoryV1Params
fn default() -> GetExerciseHistoryV1Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetExerciseHistoryV1Params
impl RefUnwindSafe for GetExerciseHistoryV1Params
impl Send for GetExerciseHistoryV1Params
impl Sync for GetExerciseHistoryV1Params
impl Unpin for GetExerciseHistoryV1Params
impl UnwindSafe for GetExerciseHistoryV1Params
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