pub struct UserTrade {}Expand description
User trade (my trades).
Fields§
§symbol: StringSymbol.
id: u64Trade ID.
order_id: u64Order ID.
order_list_id: i64Order list ID.
price: f64Price.
quantity: f64Quantity.
quote_quantity: f64Quote quantity.
commission: f64Commission.
commission_asset: StringCommission asset.
time: u64Trade time.
is_buyer: boolWas the buyer.
is_maker: boolWas the maker.
is_best_match: boolWas best match.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UserTrade
impl<'de> Deserialize<'de> for UserTrade
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 UserTrade
impl RefUnwindSafe for UserTrade
impl Send for UserTrade
impl Sync for UserTrade
impl Unpin for UserTrade
impl UnwindSafe for UserTrade
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