pub struct GetMovePositionHistoryForSubAccountParams {
pub symbol: String,
pub page: i64,
pub rows: i64,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [get_move_position_history_for_sub_account] operation.
This struct holds all of the inputs you can pass when calling
get_move_position_history_for_sub_account.
Fields§
§symbol: StringThe symbol parameter.
This field is **required.
page: i64Page
This field is **required.
rows: i64The rows parameter.
This field is **required.
start_time: Option<i64>The start_time parameter.
This field is **optional.
end_time: Option<i64>The end_time parameter.
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Trait Implementations§
Source§impl Clone for GetMovePositionHistoryForSubAccountParams
impl Clone for GetMovePositionHistoryForSubAccountParams
Source§fn clone(&self) -> GetMovePositionHistoryForSubAccountParams
fn clone(&self) -> GetMovePositionHistoryForSubAccountParams
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 GetMovePositionHistoryForSubAccountParams
impl RefUnwindSafe for GetMovePositionHistoryForSubAccountParams
impl Send for GetMovePositionHistoryForSubAccountParams
impl Sync for GetMovePositionHistoryForSubAccountParams
impl Unpin for GetMovePositionHistoryForSubAccountParams
impl UnsafeUnpin for GetMovePositionHistoryForSubAccountParams
impl UnwindSafe for GetMovePositionHistoryForSubAccountParams
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