pub struct CancelAllOrdersParams {
pub category: Category,
pub symbol: Option<String>,
pub base_coin: Option<String>,
pub settle_coin: Option<String>,
}Expand description
Cancel all orders request parameters.
Fields§
§category: CategoryProduct category
symbol: Option<String>Symbol name (optional, cancel all if not specified)
base_coin: Option<String>Base coin
settle_coin: Option<String>Settle coin
Trait Implementations§
Source§impl Clone for CancelAllOrdersParams
impl Clone for CancelAllOrdersParams
Source§fn clone(&self) -> CancelAllOrdersParams
fn clone(&self) -> CancelAllOrdersParams
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 Debug for CancelAllOrdersParams
impl Debug for CancelAllOrdersParams
Auto Trait Implementations§
impl Freeze for CancelAllOrdersParams
impl RefUnwindSafe for CancelAllOrdersParams
impl Send for CancelAllOrdersParams
impl Sync for CancelAllOrdersParams
impl Unpin for CancelAllOrdersParams
impl UnsafeUnpin for CancelAllOrdersParams
impl UnwindSafe for CancelAllOrdersParams
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