pub struct GetBlockUserTradesV1Params {
pub timestamp: i64,
pub end_time: Option<i64>,
pub start_time: Option<i64>,
pub underlying: Option<String>,
pub recv_window: Option<i64>,
}Expand description
struct for passing parameters to the method get_block_user_trades_v1
Fields§
§timestamp: i64§end_time: Option<i64>§start_time: Option<i64>§underlying: Option<String>§recv_window: Option<i64>The value cannot be greater than 60000
Trait Implementations§
Source§impl Clone for GetBlockUserTradesV1Params
impl Clone for GetBlockUserTradesV1Params
Source§fn clone(&self) -> GetBlockUserTradesV1Params
fn clone(&self) -> GetBlockUserTradesV1Params
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 GetBlockUserTradesV1Params
impl Debug for GetBlockUserTradesV1Params
Source§impl Default for GetBlockUserTradesV1Params
impl Default for GetBlockUserTradesV1Params
Source§fn default() -> GetBlockUserTradesV1Params
fn default() -> GetBlockUserTradesV1Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetBlockUserTradesV1Params
impl RefUnwindSafe for GetBlockUserTradesV1Params
impl Send for GetBlockUserTradesV1Params
impl Sync for GetBlockUserTradesV1Params
impl Unpin for GetBlockUserTradesV1Params
impl UnsafeUnpin for GetBlockUserTradesV1Params
impl UnwindSafe for GetBlockUserTradesV1Params
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