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