pub struct ListOrderHistoryOpts {
pub subaccount_id: Option<u64>,
pub symbol: Option<String>,
pub symbol_id: Option<u32>,
pub page_token: Option<String>,
pub limit: Option<u32>,
pub include_attached_risk: bool,
pub include_attached_risk_state: bool,
}Expand description
Options for crate::services::OrdersService::list_history_with.
Fields§
§subaccount_id: Option<u64>§symbol: Option<String>§symbol_id: Option<u32>§page_token: Option<String>§limit: Option<u32>§include_attached_risk: bool§include_attached_risk_state: boolTrait Implementations§
Source§impl Clone for ListOrderHistoryOpts
impl Clone for ListOrderHistoryOpts
Source§fn clone(&self) -> ListOrderHistoryOpts
fn clone(&self) -> ListOrderHistoryOpts
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 ListOrderHistoryOpts
impl Debug for ListOrderHistoryOpts
Source§impl Default for ListOrderHistoryOpts
impl Default for ListOrderHistoryOpts
Source§fn default() -> ListOrderHistoryOpts
fn default() -> ListOrderHistoryOpts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListOrderHistoryOpts
impl RefUnwindSafe for ListOrderHistoryOpts
impl Send for ListOrderHistoryOpts
impl Sync for ListOrderHistoryOpts
impl Unpin for ListOrderHistoryOpts
impl UnsafeUnpin for ListOrderHistoryOpts
impl UnwindSafe for ListOrderHistoryOpts
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