pub struct LMPosition {
pub position_id: String,
pub product_id: String,
pub base_coin: String,
pub quote_coin: String,
pub base_amount: String,
pub quote_amount: String,
pub leverage: String,
pub margin: String,
pub status: String,
pub created_time: i64,
}Fields§
§position_id: String§product_id: String§base_coin: String§quote_coin: String§base_amount: String§quote_amount: String§leverage: String§margin: String§status: String§created_time: i64Trait Implementations§
Source§impl Clone for LMPosition
impl Clone for LMPosition
Source§fn clone(&self) -> LMPosition
fn clone(&self) -> LMPosition
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 LMPosition
impl Debug for LMPosition
Source§impl<'de> Deserialize<'de> for LMPosition
impl<'de> Deserialize<'de> for LMPosition
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 LMPosition
impl RefUnwindSafe for LMPosition
impl Send for LMPosition
impl Sync for LMPosition
impl Unpin for LMPosition
impl UnsafeUnpin for LMPosition
impl UnwindSafe for LMPosition
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