pub struct CancelOrderCommand<'a> {
pub gateway: &'a str,
pub env: &'a str,
pub acc_id: u64,
pub market: &'a str,
pub order_id: String,
pub jp_acc_type: Option<i32>,
pub confirm: bool,
pub idempotency_key: Option<String>,
pub output: OutputFormat,
}Fields§
§gateway: &'a str§env: &'a str§acc_id: u64§market: &'a str§order_id: String§jp_acc_type: Option<i32>§confirm: bool§idempotency_key: Option<String>§output: OutputFormatAuto Trait Implementations§
impl<'a> Freeze for CancelOrderCommand<'a>
impl<'a> RefUnwindSafe for CancelOrderCommand<'a>
impl<'a> Send for CancelOrderCommand<'a>
impl<'a> Sync for CancelOrderCommand<'a>
impl<'a> Unpin for CancelOrderCommand<'a>
impl<'a> UnsafeUnpin for CancelOrderCommand<'a>
impl<'a> UnwindSafe for CancelOrderCommand<'a>
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