pub struct BatchOrderResult {
pub category: Category,
pub symbol: String,
pub order_id: String,
pub order_link_id: String,
pub create_at: Option<String>,
}Expand description
Batch order result.
Fields§
§category: CategoryProduct category.
symbol: StringTrading symbol.
order_id: StringOrder ID.
order_link_id: StringUser-defined order ID.
create_at: Option<String>Created at (for batch create).
Trait Implementations§
Source§impl Clone for BatchOrderResult
impl Clone for BatchOrderResult
Source§fn clone(&self) -> BatchOrderResult
fn clone(&self) -> BatchOrderResult
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 BatchOrderResult
impl Debug for BatchOrderResult
Source§impl<'de> Deserialize<'de> for BatchOrderResult
impl<'de> Deserialize<'de> for BatchOrderResult
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
Auto Trait Implementations§
impl Freeze for BatchOrderResult
impl RefUnwindSafe for BatchOrderResult
impl Send for BatchOrderResult
impl Sync for BatchOrderResult
impl Unpin for BatchOrderResult
impl UnwindSafe for BatchOrderResult
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