pub struct BybitCancelAllRequest {
pub category: BybitCategory,
pub symbol: Option<String>,
pub base_coin: Option<String>,
pub settle_coin: Option<String>,
}Expand description
Cancel all orders request
Fields§
§category: BybitCategoryBybit product category (spot, linear, inverse, options)
symbol: Option<String>Optional symbol filter (cancels only orders for this symbol)
base_coin: Option<String>Optional base coin filter (cancels only orders for this base coin)
settle_coin: Option<String>Optional settle coin filter (cancels only orders for this settle coin)
Trait Implementations§
Source§impl Clone for BybitCancelAllRequest
impl Clone for BybitCancelAllRequest
Source§fn clone(&self) -> BybitCancelAllRequest
fn clone(&self) -> BybitCancelAllRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BybitCancelAllRequest
impl RefUnwindSafe for BybitCancelAllRequest
impl Send for BybitCancelAllRequest
impl Sync for BybitCancelAllRequest
impl Unpin for BybitCancelAllRequest
impl UnwindSafe for BybitCancelAllRequest
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