pub struct LiquidationOrder {
pub average_price: f64,
pub executed_qty: f64,
pub orig_qty: f64,
pub price: f64,
pub side: String,
pub status: String,
pub symbol: String,
pub time: u64,
pub time_in_force: String,
pub type: String,
}Fields§
§average_price: f64§executed_qty: f64§orig_qty: f64§price: f64§side: String§status: String§symbol: String§time: u64§time_in_force: String§type: StringTrait Implementations§
Source§impl Clone for LiquidationOrder
impl Clone for LiquidationOrder
Source§fn clone(&self) -> LiquidationOrder
fn clone(&self) -> LiquidationOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LiquidationOrder
impl Debug for LiquidationOrder
Source§impl<'de> Deserialize<'de> for LiquidationOrder
impl<'de> Deserialize<'de> for LiquidationOrder
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 LiquidationOrder
impl RefUnwindSafe for LiquidationOrder
impl Send for LiquidationOrder
impl Sync for LiquidationOrder
impl Unpin for LiquidationOrder
impl UnsafeUnpin for LiquidationOrder
impl UnwindSafe for LiquidationOrder
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