pub struct PlaceOrderBatchResult {
pub category: Category,
pub symbol: String,
pub order_id: String,
pub order_link_id: Option<String>,
pub create_at: Option<Timestamp>,
}Fields§
§category: Category§symbol: String§order_id: String§order_link_id: Option<String>§create_at: Option<Timestamp>Order creation timestamp (ms). Note: Bybit uses the non-standard key “createAt”.
Trait Implementations§
Source§impl Debug for PlaceOrderBatchResult
impl Debug for PlaceOrderBatchResult
Source§impl<'de> Deserialize<'de> for PlaceOrderBatchResult
impl<'de> Deserialize<'de> for PlaceOrderBatchResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlaceOrderBatchResult
impl PartialEq for PlaceOrderBatchResult
Source§fn eq(&self, other: &PlaceOrderBatchResult) -> bool
fn eq(&self, other: &PlaceOrderBatchResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlaceOrderBatchResult
Auto Trait Implementations§
impl Freeze for PlaceOrderBatchResult
impl RefUnwindSafe for PlaceOrderBatchResult
impl Send for PlaceOrderBatchResult
impl Sync for PlaceOrderBatchResult
impl Unpin for PlaceOrderBatchResult
impl UnsafeUnpin for PlaceOrderBatchResult
impl UnwindSafe for PlaceOrderBatchResult
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