pub struct CancelOrderParams {
pub key: OrderKey,
pub symbol: Option<String>,
pub symbol_id: Option<u32>,
pub subaccount_id: Option<u64>,
}Expand description
Params for crate::services::OrdersService::cancel_with.
Fields§
§key: OrderKey§symbol: Option<String>§symbol_id: Option<u32>§subaccount_id: Option<u64>Trait Implementations§
Source§impl Clone for CancelOrderParams
impl Clone for CancelOrderParams
Source§fn clone(&self) -> CancelOrderParams
fn clone(&self) -> CancelOrderParams
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 moreAuto Trait Implementations§
impl Freeze for CancelOrderParams
impl RefUnwindSafe for CancelOrderParams
impl Send for CancelOrderParams
impl Sync for CancelOrderParams
impl Unpin for CancelOrderParams
impl UnsafeUnpin for CancelOrderParams
impl UnwindSafe for CancelOrderParams
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