pub struct BatchCancelResult {
pub order_id: Option<i64>,
pub symbol: String,
pub status: String,
pub client_order_id: Option<String>,
pub msg: Option<String>,
}Expand description
Batch cancel order result.
Fields§
§order_id: Option<i64>Order ID.
symbol: StringTrading pair symbol.
status: StringOrder status.
client_order_id: Option<String>Client order identifier.
msg: Option<String>Optional message.
Trait Implementations§
Source§impl Clone for BatchCancelResult
impl Clone for BatchCancelResult
Source§fn clone(&self) -> BatchCancelResult
fn clone(&self) -> BatchCancelResult
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 BatchCancelResult
impl Debug for BatchCancelResult
Source§impl<'de> Deserialize<'de> for BatchCancelResult
impl<'de> Deserialize<'de> for BatchCancelResult
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BatchCancelResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BatchCancelResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for BatchCancelResult
impl Serialize for BatchCancelResult
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 BatchCancelResult
impl RefUnwindSafe for BatchCancelResult
impl Send for BatchCancelResult
impl Sync for BatchCancelResult
impl Unpin for BatchCancelResult
impl UnwindSafe for BatchCancelResult
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