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