pub struct GetClosePositionItem {
pub symbol: String,
pub side: String,
pub qty: String,
pub avg_entry_price: String,
pub avg_exit_price: String,
pub delivery_price: String,
pub total_open_fee: String,
pub total_close_fee: String,
pub delivery_fee: String,
pub total_pnl: String,
pub open_time: i64,
pub close_time: i64,
}Fields§
§symbol: String§side: String§qty: String§avg_entry_price: String§avg_exit_price: String§delivery_price: String§total_open_fee: String§total_close_fee: String§delivery_fee: String§total_pnl: String§open_time: i64§close_time: i64Trait Implementations§
Source§impl Clone for GetClosePositionItem
impl Clone for GetClosePositionItem
Source§fn clone(&self) -> GetClosePositionItem
fn clone(&self) -> GetClosePositionItem
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 GetClosePositionItem
impl Debug for GetClosePositionItem
Source§impl<'de> Deserialize<'de> for GetClosePositionItem
impl<'de> Deserialize<'de> for GetClosePositionItem
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 GetClosePositionItem
impl RefUnwindSafe for GetClosePositionItem
impl Send for GetClosePositionItem
impl Sync for GetClosePositionItem
impl Unpin for GetClosePositionItem
impl UnsafeUnpin for GetClosePositionItem
impl UnwindSafe for GetClosePositionItem
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