pub struct AmendOrderRequest {
pub tx_id: Option<String>,
pub client_order_id: Option<String>,
pub order_quantity: Option<Decimal>,
pub display_quantity: Option<Decimal>,
pub limit_price: Option<String>,
pub trigger_price: Option<String>,
pub post_only: Option<bool>,
pub deadline: Option<String>,
}
Fields§
§tx_id: Option<String>
§client_order_id: Option<String>
§order_quantity: Option<Decimal>
§display_quantity: Option<Decimal>
§limit_price: Option<String>
§trigger_price: Option<String>
§post_only: Option<bool>
§deadline: Option<String>
Implementations§
Source§impl AmendOrderRequest
impl AmendOrderRequest
pub fn builder() -> AmendOrderRequestBuilder
Trait Implementations§
Source§impl Clone for AmendOrderRequest
impl Clone for AmendOrderRequest
Source§fn clone(&self) -> AmendOrderRequest
fn clone(&self) -> AmendOrderRequest
Returns a copy 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 AmendOrderRequest
impl Debug for AmendOrderRequest
Auto Trait Implementations§
impl Freeze for AmendOrderRequest
impl RefUnwindSafe for AmendOrderRequest
impl Send for AmendOrderRequest
impl Sync for AmendOrderRequest
impl Unpin for AmendOrderRequest
impl UnwindSafe for AmendOrderRequest
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