pub struct ModifyOrderCommand<'a> {
pub gateway: &'a str,
pub env: &'a str,
pub acc_id: u64,
pub market: &'a str,
pub order_id: String,
pub op: &'a str,
pub qty: Option<f64>,
pub price: Option<f64>,
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§op: &'a str§qty: Option<f64>§price: Option<f64>§confirm: bool§idempotency_key: Option<String>§output: OutputFormatAuto Trait Implementations§
impl<'a> Freeze for ModifyOrderCommand<'a>
impl<'a> RefUnwindSafe for ModifyOrderCommand<'a>
impl<'a> Send for ModifyOrderCommand<'a>
impl<'a> Sync for ModifyOrderCommand<'a>
impl<'a> Unpin for ModifyOrderCommand<'a>
impl<'a> UnsafeUnpin for ModifyOrderCommand<'a>
impl<'a> UnwindSafe for ModifyOrderCommand<'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