pub struct BatchOrderUpdate {
pub order_id: Option<i64>,
pub orig_client_order_id: Option<String>,
pub symbol: String,
pub side: String,
pub quantity: String,
pub price: String,
}Expand description
Batch order update request payload used by edit_orders.
Fields§
§order_id: Option<i64>Order ID.
orig_client_order_id: Option<String>Original client order identifier.
symbol: StringTrading pair symbol.
side: StringOrder side.
quantity: StringOrder quantity.
price: StringOrder price.
Trait Implementations§
Source§impl Clone for BatchOrderUpdate
impl Clone for BatchOrderUpdate
Source§fn clone(&self) -> BatchOrderUpdate
fn clone(&self) -> BatchOrderUpdate
Returns a duplicate 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 BatchOrderUpdate
impl Debug for BatchOrderUpdate
Source§impl<'de> Deserialize<'de> for BatchOrderUpdate
impl<'de> Deserialize<'de> for BatchOrderUpdate
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BatchOrderUpdate, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BatchOrderUpdate, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for BatchOrderUpdate
impl Serialize for BatchOrderUpdate
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for BatchOrderUpdate
impl RefUnwindSafe for BatchOrderUpdate
impl Send for BatchOrderUpdate
impl Sync for BatchOrderUpdate
impl Unpin for BatchOrderUpdate
impl UnwindSafe for BatchOrderUpdate
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