pub struct PrivateGetUserTradesByInstrumentRequest {
pub instrument_name: String,
pub start_seq: Option<i64>,
pub end_seq: Option<i64>,
pub count: Option<i64>,
pub start_timestamp: Option<i64>,
pub end_timestamp: Option<i64>,
pub historical: Option<bool>,
pub sorting: Option<Sorting>,
}Fields§
§instrument_name: String§start_seq: Option<i64>§end_seq: Option<i64>§count: Option<i64>§start_timestamp: Option<i64>§end_timestamp: Option<i64>§historical: Option<bool>§sorting: Option<Sorting>Trait Implementations§
Source§impl Clone for PrivateGetUserTradesByInstrumentRequest
impl Clone for PrivateGetUserTradesByInstrumentRequest
Source§fn clone(&self) -> PrivateGetUserTradesByInstrumentRequest
fn clone(&self) -> PrivateGetUserTradesByInstrumentRequest
Returns a duplicate 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 Default for PrivateGetUserTradesByInstrumentRequest
impl Default for PrivateGetUserTradesByInstrumentRequest
Source§fn default() -> PrivateGetUserTradesByInstrumentRequest
fn default() -> PrivateGetUserTradesByInstrumentRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateGetUserTradesByInstrumentRequest
impl<'de> Deserialize<'de> for PrivateGetUserTradesByInstrumentRequest
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
Source§impl PartialEq for PrivateGetUserTradesByInstrumentRequest
impl PartialEq for PrivateGetUserTradesByInstrumentRequest
Source§fn eq(&self, other: &PrivateGetUserTradesByInstrumentRequest) -> bool
fn eq(&self, other: &PrivateGetUserTradesByInstrumentRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateGetUserTradesByInstrumentRequest
Auto Trait Implementations§
impl Freeze for PrivateGetUserTradesByInstrumentRequest
impl RefUnwindSafe for PrivateGetUserTradesByInstrumentRequest
impl Send for PrivateGetUserTradesByInstrumentRequest
impl Sync for PrivateGetUserTradesByInstrumentRequest
impl Unpin for PrivateGetUserTradesByInstrumentRequest
impl UnwindSafe for PrivateGetUserTradesByInstrumentRequest
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