pub struct BinanceAmendResponse {
pub symbol: SmartString,
pub order_id: u64,
pub client_order_id: SmartString,
pub transaction_time: u64,
pub status: SmartString,
pub executed_qty: SmartString,
pub original_qty: SmartString,
pub price: SmartString,
pub order_type: SmartString,
pub side: SmartString,
}Expand description
Amended order 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
transaction_time: u64Transaction timestamp from Binance
status: SmartStringCurrent order status after amendment
executed_qty: SmartStringQuantity of the order that has been executed
original_qty: SmartStringOriginal quantity of the order after amendment
price: SmartStringOrder price as a string
order_type: SmartStringOrder type (LIMIT, MARKET, etc.)
side: SmartStringOrder side (BUY or SELL)
Trait Implementations§
Source§impl Clone for BinanceAmendResponse
impl Clone for BinanceAmendResponse
Source§fn clone(&self) -> BinanceAmendResponse
fn clone(&self) -> BinanceAmendResponse
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 BinanceAmendResponse
impl Debug for BinanceAmendResponse
Source§impl<'de> Deserialize<'de> for BinanceAmendResponse
impl<'de> Deserialize<'de> for BinanceAmendResponse
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 BinanceAmendResponse
impl RefUnwindSafe for BinanceAmendResponse
impl Send for BinanceAmendResponse
impl Sync for BinanceAmendResponse
impl Unpin for BinanceAmendResponse
impl UnwindSafe for BinanceAmendResponse
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