pub struct BinanceOrderInfo {
pub symbol: SmartString,
pub order_id: u64,
pub client_order_id: SmartString,
}Expand description
Order information in OCO response
Fields§
§symbol: SmartStringTrading symbol (e.g., “BTCUSDT”)
order_id: u64Unique order ID assigned by Binance
client_order_id: SmartStringClient-generated order ID for tracking
Trait Implementations§
Source§impl Clone for BinanceOrderInfo
impl Clone for BinanceOrderInfo
Source§fn clone(&self) -> BinanceOrderInfo
fn clone(&self) -> BinanceOrderInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinanceOrderInfo
impl Debug for BinanceOrderInfo
Source§impl<'de> Deserialize<'de> for BinanceOrderInfo
impl<'de> Deserialize<'de> for BinanceOrderInfo
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 BinanceOrderInfo
impl RefUnwindSafe for BinanceOrderInfo
impl Send for BinanceOrderInfo
impl Sync for BinanceOrderInfo
impl Unpin for BinanceOrderInfo
impl UnwindSafe for BinanceOrderInfo
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